7
2つの式を組み合わせる(Expression <Func <T、bool >>)
タイプの2つの式がExpression<Func<T, bool>>あり、これらのOR、AND、またはNOTを使用して、同じタイプの新しい式を取得したい Expression<Func<T, bool>> expr1; Expression<Func<T, bool>> expr2; ... //how to do this (the code below will obviously not work) Expression<Func<T, bool>> andExpression = expr AND expr2
249
c#
linq
lambda
expression