FilterCondition Constructor |
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic FilterCondition(
string tableName,
string columnName,
ComparisonType comparison,
Object value,
bool includeNulls = false,
string tableAlias = null
)
Public Sub New (
tableName As String,
columnName As String,
comparison As ComparisonType,
value As Object,
Optional includeNulls As Boolean = false,
Optional tableAlias As String = Nothing
)
public:
FilterCondition(
String^ tableName,
String^ columnName,
ComparisonType^ comparison,
Object^ value,
bool includeNulls = false,
String^ tableAlias = nullptr
)
new :
tableName : string *
columnName : string *
comparison : ComparisonType *
value : Object *
?includeNulls : bool *
?tableAlias : string
(* Defaults:
let _includeNulls = defaultArg includeNulls false
let _tableAlias = defaultArg tableAlias null
*)
-> FilterCondition
Parameters
- tableName
- Type: SystemString
Name of the table. - columnName
- Type: SystemString
Name of the column. - comparison
- Type: Aloe.SystemFrameworks.Domain.DataAccessComparisonType
The comparison. - value
- Type: SystemObject
The value against which to compare. - includeNulls (Optional)
- Type: SystemBoolean
if set to true include nulls in the result. - tableAlias (Optional)
- Type: SystemString
The table alias.
See Also