У меня есть ситуация, когда мне нужно динамически построить запрос linq на основе выбора пользователя.Если бы мне пришлось динамически генерировать sql, я мог бы сделать это следующим образом:
var sb = new StringBuilder();
sb.AppendLine("SELECT * FROM products p");
sb.AppendLine("WHERE p.CategoryId > 5");
// these variables are not static but choosen by the user
var type1 = true;
var type2 = true;
var type3 = false;
string type1expression = null;
string type2expression = null;
string type3expression = null;
if (type1)
type1expression = "p.productType1 = true";
if (type2)
type2expression = "p.productType2 = true";
if (type3)
type3expression = "p.productType3 = true";
string orexpression = String.Empty;
foreach(var expression in new List<string>
{type1expression, type2expression, type3expression})
{
if (!String.IsNullOrEmpty(orexpression) &&
!String.IsNullOrEmpty(expression))
orexpression += " OR ";
orexpression += expression;
}
if (!String.IsNullOrEmpty(orexpression))
{
sb.AppendLine("AND (");
sb.AppendLine(orexpression);
sb.AppendLine(")");
}
// result:
// SELECT * FROM products p
// WHERE p.CategoryId > 5
// AND (
// p.productType1 = true OR p.productType2 = true
// )
Теперь мне нужно создать запрос linq таким же образом.
Это хорошо работает с дозвуковым
var result = from p in db.products
where p.productType1 == true || p.productType2 == true
select p;
Я пробовал это с PredicateBuilder http://www.albahari.com/nutshell/predicatebuilder.aspx, но это вызывает исключение с дозвуковым.
var query = from p in db.products
select p;
var inner = PredicateBuilder.False<product>();
inner = inner.Or(p => p.productType1 == true);
inner = inner.Or(p => p.productType2 == true);
var result = query.Where(inner);
исключение, которое выбрасывается: NotSupportedException: The member 'productType1' is not supported
в SubSonic.DataProviders.MySQL.MySqlFormatter.VisitMemberAccess
.
У кого-нибудь есть идея, как заставить этот запрос работать: