1
只是兩個快速問題Linq表達式轉換
1.下面的語句叫什麼?
Func<usersDto, bool> predicate
2.與下面有什麼不同?
Expression<Func<usersDto, bool>>
3.How做我轉換Func<type1,bool>
到Func<type2,bool>
。好像先進的東西我
例
GetUsers(Func<UserDto,bool> predicate)
{
return EfContext.Users.Where (convert above predicate to be passed here)
.Cast<>();
}
問題可能已被回答。 [http://stackoverflow.com/questions/793571/why-would-you-use-expressionfunct-rather-than-funct][1] [1]:HTTP:// stackoverflow.com/questions/793571/why-would-you-use-expressionfunct-rather-than-funct – mdcuesta
第一個被稱爲謂詞。第二個沒有名字,但我會稱之爲Al。 – SWeko
@mdcuesta#2從您的鏈接回答,#1和#3仍然打開 – Deeptechtons