我有一个包含字段group name
,description
和isactive(boolean datatype)
的表格。
我想写一个Linq
查询,选择状态为true的所有记录。我试过这样的事。但它给出了错误。
List<tm_grp_group> tm = db.tm_grp_group.Where(x => x.grp_isactive.Equals(true));
return Json(tm, JsonRequestBehavior.AllowGet);
答案 0 :(得分:0)
你的问题完全相同,link请尝试这种方式:
List<tm_grp_group> tm = db.tm_grp_group.Where(x => x.grp_isactive== true).ToList();
或
List<tm_grp_group> tm = db.tm_grp_group.Where(x => x.grp_isactive).ToList();