| QueryBuilderCreateSqlPredicate Method |
Create the actual SQL predicate
Namespace:
SanteDB.OrmLite
Assembly:
SanteDB.OrmLite (in SanteDB.OrmLite.dll) Version: 2.2.1
Syntax public SqlStatement CreateSqlPredicate(
string tableAlias,
string columnName,
PropertyInfo modelProperty,
IList values
)
Public Function CreateSqlPredicate (
tableAlias As String,
columnName As String,
modelProperty As PropertyInfo,
values As IList
) As SqlStatement
public:
SqlStatement^ CreateSqlPredicate(
String^ tableAlias,
String^ columnName,
PropertyInfo^ modelProperty,
IList^ values
)
member CreateSqlPredicate :
tableAlias : string *
columnName : string *
modelProperty : PropertyInfo *
values : IList -> SqlStatement
Parameters
- tableAlias
- Type: SystemString
The alias for the table on which the predicate is based - columnName
- Type: SystemString
The column data for the data model - modelProperty
- Type: System.ReflectionPropertyInfo
The model property information for type information - values
- Type: System.CollectionsIList
The values to be matched
Return Value
Type:
SqlStatement[Missing <returns> documentation for "M:SanteDB.OrmLite.QueryBuilder.CreateSqlPredicate(System.String,System.String,System.Reflection.PropertyInfo,System.Collections.IList)"]
See Also