public IEnumerable<T> GetEntities<T>(Func<T, bool> func)
{
var table = this.GetEntitySet<T>();
var temp = table.Where(f => func(f.Value));
var ret = temp.Select(f => f.Value);
return ret;
}
这个方法能不能做条件查询。
(func<T,bool>func)这个是什么?
这个方法调用怎么写,给的参数等,详细点,谢谢
{
var table = this.GetEntitySet<T>();
var temp = table.Where(f => func(f.Value));
var ret = temp.Select(f => f.Value);
return ret;
}
这个方法能不能做条件查询。
(func<T,bool>func)这个是什么?
这个方法调用怎么写,给的参数等,详细点,谢谢
解决方案
55
func<T,bool>func是一个委托。泛型委托。输入的是一个T类型,输出的是一个bool值