簡単な質問を 2 つだけ
1.以下の文は何と呼ばれますか?
Func<usersDto, bool> predicate
2.下とどう違うの?
Expression<Func<usersDto, bool>>
3. に変換するにはどうすればよいですFunc<type1,bool>
かFunc<type2,bool>
。高度なもののようです
例
GetUsers(Func<UserDto,bool> predicate)
{
return EfContext.Users.Where ( convert above predicate to be passed here)
.Cast<>();
}