Func<TObject, bool>是委托(delegate)
Expression<Func<TObject, bool>>是表达式
Expression编译后就会变成delegate,才能运行。比如
Expression<Func<int, bool>> ex = x=>x < 100;
Func<int, bool> func = ex.Compile();
然后你就可以调用func:
func(5) //-返回 true
func(200) //- 返回 false
而表达式是不能直接调用的。
参考:http://stackoverflow.com/questions/793571/why-would-you-use-expressionfunct-rather-than-funct
关于EF中用哪个你可以看看这篇文章:Entity Framework - Func引起的数据库全表查询
关于如何将多个expression合并为一个可以写多个where:
.where(expression1).where(expression2)...
运行时EF会自动合并优化的