我通过DbContext
生成器生成了我的实体,并将其添加到使用我的实体上下文模型的API控制器中。但是以下方法无法编译:
public IEnumerable<casino> Getcasinos()
{
var casinos = db.casinos.Include(c => c.city).Include(c => c.state);
return casinos.AsEnumerable();
}
编译器说:
Cannot Convert Lambda Expression to Type 'String' Because It Is Not A Delegate Type
为什么会说这个?我导入了System.Linq
名称空间。
答案 0 :(得分:8)
这实际上是因为ObjectQuery(T).Include
方法而发生的。这有函数签名:
public ObjectQuery<T> Include(string path);
您之所以看到这种情况,可能是因为无论您在哪里调用它都没有System.Data.Entity
命名空间。从DbExtensions
元数据中,您可以看到使用表达式的Include
需要System.Data.Entity
命名空间:
namespace System.Data.Entity
{
[SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", Justification = "Casing is intentional")]
public static class DbExtensions
{
public static IQueryable<T> Include<T, TProperty>(this IQueryable<T> source, Expression<Func<T, TProperty>> path) where T : class;
public static IQueryable<T> Include<T>(this IQueryable<T> source, string path) where T : class;
public static IQueryable Include(this IQueryable source, string path);
}
}
如果包含System.Data.Entity
命名空间,则错误将解决。