实体变量根据where获取列表

时间:2011-01-12 17:51:35

标签: c# entity-framework

请告知:快速启动EF

大家好,

非常新的EF ...所以我有一个实体变量,我怎么说给我所有以'a'开头的类别?

感谢, 杆

2 个答案:

答案 0 :(得分:2)

您可以尝试以下内容,EF应将StartsWith翻译为LIKE

MyEFContext.SomeTable.Where(someTable => someTable.categories.StartsWith("a"));

答案 1 :(得分:1)

var aCategories = from cat in context.Categories
                  where cat.StartsWith("a")
                  select cat;