5

在我的基础存储库类中

我编写了这个函数,以便可以从数据库中检索排序的数据集合。T 是在类级别定义的泛型

public abstract class RepositoryBase<T> 
        where T : class

代码是这样的:

public IList<T> GetAll<TKey>(Expression<Func<T, bool>> whereCondition, Expression<Func<T, TKey>> sortCondition, bool sortDesc = false)
        {
            if (sortDesc)
                return this.ObjectSet.Where(whereCondition).OrderByDescending(sortCondition).ToList<T>();

            return this.ObjectSet.Where(whereCondition).OrderBy(sortCondition).ToList<T>() ;
        }

我的目标是引入一个通用排序参数,以便我可以以这种方式调用该函数:

repo.GetAll (model=>model.field>0, model=>model.sortableField, true)

我的意思是我可以通过匿名函数直接指定排序字段,因此使用 Intellisense ......

不幸的是,这个函数不起作用,因为最后一行代码在编译时会产生错误。

我也试着打电话:

repo.GetAll<Model> (model=>model.field>0, model=>model.sortableField, true)

但这不起作用。

我应该如何编写函数来实现我的目标?

我正在使用 EF 5、c#、.NET 4.5

4

1 回答 1

3

您正在使用ObjectSetwhich implements IQueryable<T>System.Linq.Queryable这由接受Expression<Func<参数的方法 on 扩展。使用这些Expression参数是正确的,因为您打算在数据库中执行,而不是在本地执行。

  • Func 是一个匿名委托,一种 .net 方法。
  • Expression是一棵树,可以编译成Func,也可以翻译成Sql或其他东西。

您向我们展示了该方法的真正抽象用法,但不是该方法的实际使用,也不是编译器错误。我怀疑您可能犯的错误混淆了这两个类型参数。

你说:

repo.GetAll<Model> (model=>model.field>0, model=>model.sortableField, true)

但是这个方法的这个泛型参数代表了 sortableField 的类型。如果 sortableField 不是模型 - 这是错误的。

相反,您应该这样做:

Repository<Person> myRepo = new Repository<Person>();
myRepo.GetAll<DateTime>(p => p.Friends.Count() > 3, p => p.DateOfBirth, true);

If specifying the sort type breaks your intended pattern of usage, consider hiding that key by using an IOrderer: Store multi-type OrderBy expression as a property

于 2013-02-25T17:28:39.263 回答