Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

15 lines
454B

  1. using HealthMonitor.Util.QueryObjects;
  2. namespace HealthMonitor.Core.Query.Extensions
  3. {
  4. public static class QueryConditionsExt
  5. {
  6. public static IQueryable<T> QueryConditions<T>(this IQueryable<T> query, IEnumerable<QueryFilterCondition> conditions)
  7. {
  8. var parser = new QueryExpressionParser<T>();
  9. var filter = parser.ParserConditions(conditions);
  10. return query.Where(filter);
  11. }
  12. }
  13. }