前言:html
本身經過lambda表達式的封裝,將對應的表達式轉成字符串的過程當中,對lambda表達式有了新的認識數據庫
緣由:express
不少開發者對lambda表達式Expression<Func<Person, bool>> 、Func<Person, bool>表示存在疑惑,如今就用代碼舉個簡單列子post
原代碼:優化
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;url
namespace Lambda
{
class Program
{
static void Main(string[] args)
{
Expression<Func<Person, bool>> exp = null;spa
Func<Person, string> func = null;
func = p => { return p.age; };htm
exp = p => p.sex=="男";blog
Person person = new Person();
person.age = "12";
person.name = "zouhp";
person.sex = "男";開發
Console.WriteLine(exp);
Console.WriteLine(exp.Compile()(person));
Console.WriteLine(func(person));
Console.ReadLine();
}
public class Person
{
public string name;
public string age;
public string sex;
}
}
}
結論:
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會自動合併優化的