Why are there no results?
Code:var list = db.Weapons .Where(item => item.Limits.MinLevel >= 50 && item.Type == WeaponType.Bow && item.ActualDPS > 0 ).OrderByDescending(o => o.ActualDPS);db.UI_ShowObjectList(list, o => string.Format("level: {1}; dps: {0:F2}", o.ActualDPS, o.Limits.MinLevel));



Reply With Quote

