Interface IWhereConditionBuilder
Defines methods for constructing IWhereCondition.
public interface IWhereConditionBuilder
- Extension Methods
Remarks
Implement this interface to provide a custom builder for a filter model property represented as the object.
Methods
Build(string, object)
Returns a IWhereCondition composed from given columnName and value.
Task<IWhereCondition> Build(string columnName, object value)
Parameters
columnNamestringName of the database column.
valueobjectValue of the object type.
Returns
- Task<IWhereCondition>