Class TypeCondition
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Class determining condition which can distinguish between several object types within one Info class.
public class TypeCondition
- Inheritance
-
objectTypeCondition
- Extension Methods
Properties
ConditionColumns
Gets the names of the columns.
public IEnumerable<string> ConditionColumns { get; }
Property Value
- IEnumerable<string>
Methods
GetFieldValue(string)
Gets the field value for the Type condition
public object GetFieldValue(string column)
Parameters
column
string
Returns
- object
GetValue(string)
Gets the actual value for the Type condition column
public object GetValue(string column)
Parameters
column
string
Returns
- object
GetWhereCondition()
Generates default WHERE condition according to GroupColumn and TypeCondition settings.
public WhereCondition GetWhereCondition()
Returns
WhereEquals(string, object)
Adds another condition into TypeCondition.
public TypeCondition WhereEquals(string conditionColumn, object conditionValue)
Parameters
conditionColumn
stringName of the column the value of which can distinguish between the object types
conditionValue
objectValue of the condition column which determines specified type
Returns
Remarks
DefaultColumnValue (The default column value that would be set into info object in case of type condition application) equals to conditionValue.
WhereEquals(string, object, object)
Adds another condition into TypeCondition.
public TypeCondition WhereEquals(string conditionColumn, object conditionValue, object defaultColumnValue)
Parameters
conditionColumn
stringName of the column the value of which can distinguish between the object types
conditionValue
objectValue of the condition column which determines specified type
defaultColumnValue
objectThe default column value that would be set into info object in case of type condition application.
Returns
WhereEqualsOrNull(string, object, object)
Adds another condition into TypeCondition.
public TypeCondition WhereEqualsOrNull(string conditionColumn, object conditionValue, object defaultColumnValue = null)
Parameters
conditionColumn
stringName of the column the value of which can distinguish between the object types
conditionValue
objectValue of the condition column which determines specified type
defaultColumnValue
objectThe default column value that would be set into info object in case of type condition application.
Returns
WhereIsNotNull(string)
Adds another condition into TypeCondition.
public TypeCondition WhereIsNotNull(string conditionColumn)
Parameters
conditionColumn
stringName of the column the value of which can distinguish between the object types
Returns
WhereIsNotNull(string, object)
Adds another condition into TypeCondition.
public TypeCondition WhereIsNotNull(string conditionColumn, object defaultColumnValue)
Parameters
conditionColumn
stringName of the column the value of which can distinguish between the object types
defaultColumnValue
objectThe default column value that would be set into info object in case of type condition application.
Returns
WhereIsNull(string)
Adds another condition into TypeCondition.
public TypeCondition WhereIsNull(string conditionColumn)
Parameters
conditionColumn
stringName of the column the value of which can distinguish between the object types
Returns
WhereNotEquals(string, object, object)
Adds another condition into TypeCondition.
public TypeCondition WhereNotEquals(string conditionColumn, object conditionValue, object defaultColumnValue = null)
Parameters
conditionColumn
stringName of the column the value of which can distinguish between the object types
conditionValue
objectValue of the condition column which determines specified type
defaultColumnValue
objectThe default column value that would be set into info object in case of type condition application.
Returns
WhereNotEqualsOrNull(string, object, object)
Adds another condition into TypeCondition.
public TypeCondition WhereNotEqualsOrNull(string conditionColumn, object conditionValue, object defaultColumnValue = null)
Parameters
conditionColumn
stringName of the column the value of which can distinguish between the object types
conditionValue
objectValue of the condition column which determines specified type
defaultColumnValue
objectThe default column value that would be set into info object in case of type condition application.