作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我是 LINQ 新手,
我想从我的 dbcontext 中生成一个对象列表,其中某个字段设置为 true。
这就是我目前所拥有的,但我在选择时遇到错误?
using (var db = new dbContext())
{
return (from s in db.sims.Where(x=>x.has_been_modified == true) select x).ToList();
}
编辑:
//Returns a list of entries which where marked as edited in the sim managment database
private List<String> GetUpdatedEntries()
{
using (var db = new dbContext())
{
return db.sims.Where(x => x.has_been_modified).ToList();
}
}
最佳答案
select s
, 不是 x
这将起作用。 (因为你做 from s
)
更短的路
return db.sims.Where(x => x.has_been_modified).ToList();
供您编辑
方法返回类型应该是 List<Sim>
, 不是 List<String>
关于c# - 简单的 SELECT WHERE LINQ 查询列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21108104/
我是一名优秀的程序员,十分优秀!