 | QueryBuilderCreateSqlPredicate Method |
Create the actual SQL predicate
Namespace: SanteDB.OrmLiteAssembly: SanteDB.OrmLite (in SanteDB.OrmLite.dll) Version: 3.0.2081-alpha+d0a78774d3f97b9193d2ae2fef6d129ea9f29519
Syntaxpublic SqlStatement CreateSqlPredicate(
string tableAlias,
ColumnMapping columnMapping,
PropertyInfo domainProperty,
IList values
)
Public Function CreateSqlPredicate (
tableAlias As String,
columnMapping As ColumnMapping,
domainProperty As PropertyInfo,
values As IList
) As SqlStatement
public:
SqlStatement^ CreateSqlPredicate(
String^ tableAlias,
ColumnMapping^ columnMapping,
PropertyInfo^ domainProperty,
IList^ values
)
member CreateSqlPredicate :
tableAlias : string *
columnMapping : ColumnMapping *
domainProperty : PropertyInfo *
values : IList -> SqlStatement Parameters
- tableAlias String
- The alias for the table on which the predicate is based
- columnMapping ColumnMapping
- The column data for the data model
- domainProperty PropertyInfo
- The model property information for type information
- values IList
- The values to be matched
Return Value
SqlStatement[Missing <returns> documentation for "M:SanteDB.OrmLite.QueryBuilder.CreateSqlPredicate(System.String,SanteDB.OrmLite.ColumnMapping,System.Reflection.PropertyInfo,System.Collections.IList)"]
See Also