我有一个查询要根据条件返回计数
var query = (from a in this.db.Servers
where (a.Date >= fromDP.SelectedDate.Value && a.Date <= toDP.SelectedDate.Value)
group a by EntityFunctions.TruncateTime(a.Date) into p
select new { b = p.Count()}).OrderBy( x=> x.b);
编辑
当像这样绑定到 ListBox 的 ItemSource 时,
dummy.ItemsSource = query.ToList();
XAML
<ListBox x:Name="dummy" ItemsSource="{Binding}" />
它显示这样的输出
如何避免此处的成员分配“b”并仅显示整数值?可能吗