布尔Linq查询

时间:2013-06-03 19:01:39

标签: c# linq entity-framework entity-framework-4

是否存在运行Linq查询的语法,如果找到记录,则会产生布尔值?像这样的基本思考

 bool = table.field.contains(value)

1 个答案:

答案 0 :(得分:3)

以下代码返回一个布尔值

table.Any(x=> x.fieldname== "test")