dotnet-dynamic-linq/PoweredSoft.DynamicLinq/Fluent/WhereBuilder/WhereBuilderCondition.cs

21 lines
722 B
C#
Raw Normal View History

2018-02-11 20:55:29 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PoweredSoft.DynamicLinq.Fluent
{
2018-03-14 19:17:25 -04:00
public class WhereBuilderCondition
2018-02-11 20:55:29 -05:00
{
public string Path { get; set; }
public ConditionOperators ConditionOperator { get; set; }
public object Value { get; set; }
public bool And { get; set; }
2018-02-12 04:30:55 -05:00
public QueryConvertStrategy ConvertStrategy { get; set; }
2018-03-14 19:17:25 -04:00
public List<WhereBuilderCondition> Conditions { get; set; } = new List<WhereBuilderCondition>();
public QueryCollectionHandling CollectionHandling { get; set; }
2018-03-06 20:43:49 -05:00
public StringComparison? StringComparisation { get; set; } = null;
2018-02-11 20:55:29 -05:00
}
}