if (NavigationContext.QueryString.TryGetValue("selectedItem", out selectedArea))
{
using (dbContext c = new dbContext(dbContext.ConnectionString))
{
c.CreateIfNotExists();
c.LogDebug = true;
MainLongListSelector.ItemsSource = c.details.ToList();
}
}
我想过滤dbcontext中的内容,我该怎么办? 有人帮助我
答案 0 :(得分:0)
以这种方式尝试
MainLongListSelector.ItemsSource = c.details.Where(elem=> elem.Property==5).ToList();// returns elements with Property=5
我假设您的details
有一个名为Property
的媒体资源,但您可以使用您的字段,例如.Where(elem=> elem.Name=='Peeter' && elem.Age > 30) //takes elements with Age > 30 and Name=Peter