如何使用params关键字读取参数并实现函数
本文关键字:实现 函数 参数 读取 何使用 params 关键字 | 更新日期: 2023-09-27 18:09:16
嗨,我这里有一个代码片段。这不是我的,我在互联网上看到的,同时学习如何处理Entity Framework
,我知道它只是包括(急切加载)导航属性,然后返回它作为IQueryable
我想知道的是:
-
如何读取
params System.Linq.Expressions.Expression<Func<T, object>>[] includeProperties
参数 -
如何调用或使用此函数?应该通过催收,对吗?一个小例子将是一个很大的帮助,因为我在某种程度上学习,当我看到一些演示)
public IQueryable<Customer> AllIncluding(params System.Linq.Expressions.Expression<Func<T, object>>[] includeProperties) { var query = context.Customers; foreach (var includeProperty in includeProperties) { query = query.Include(includeProperty); } return query; }
任何帮助都将非常感激。谢谢!
params
允许您将数组参数作为实际数组或值的开放式列表传递:
var includes = new Expression<Func<Customer, object>>[]
{
i => i.SubProperty1,
i => i.SubProperty2
};
var query = db.Entities.AllIncluding(includes);
还是
var query = db.Entities.AllIncluding(i => i.SubProperty1, i => i.SubProperty2);
我在猜测具体的类型和属性,但希望你能明白。