实体框架包含无法编译

时间:2012-07-18 00:41:21

标签: entity-framework asp.net-web-api

我通过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名称空间。

1 个答案:

答案 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命名空间,则错误将解决。