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
columnName
stringName of the database column.
value
objectValue of the object type.
Returns
- Task<IWhereCondition>