Click or drag to resize

IDataObjectCountOptions Interface

IDataObjectCountOptions is used for specifying options for counting data objects.

Namespace:  Omada.OE.Model.Public
Assembly:  Omada.OE.Model (in Omada.OE.Model.dll) Version: 15.0.0.0
Syntax
C#
public interface IDataObjectCountOptions : IDataObjectLoadOptionsBase

The IDataObjectCountOptions type exposes the following members.

Properties
  NameDescription
Public propertyDataObjectIds
States a list of data object ids. If specified only the stated data objects are loaded.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyDataObjectTypeIds
States a list of data object type ids. If specified only data objects of the stated types are loaded.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyDataObjectUIds
States a list of data object uids. If specified only the stated data objects are loaded.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyExcludeDataObjectIds
States a list of data object ids. If specified the stated data objects are exluded from being loaded.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyFilterExpressions
FilterExpressions enumerates the filter expressions added using AddFilterExpression(String, ExpInnerOperator, String, String)
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyMustBeReferredByDataObjectIds
States a list of data object ids. If specified only data objects, that are referred by one or more of the specified data objects, are loaded.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyMustHaveReferenceToDataObjectIds
States a list of data object ids. If specified only data objects, which have a reference (through a reference property) to one or more of the specific data objects, will be loaded.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyOverrideSecurity
States whether security should be overridden. This includes the data object security model, acess modifers and the property security model.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyParentIds
States a list of parent data object ids. If specified only data objects residing directly below these specific parent data objects are loaded.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertySearchString
States a search string. If specified only data objects matching the search string are loaded.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertySkipAllObjects
Specifies whether all loading of data objects should be skipped.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyCode exampleSqlFilters
States a list of sql filters. Sql filters are added to the "where" clause of the query used for loading data objects. Using sql filters requires knowledge of how the data object query is constructed and should be used with great caution.
(Inherited from IDataObjectLoadOptionsBase.)
Public propertyTemplateStatus
Specifies whether only instance objects, template objects or both must be loaded. Only processes, activities and target data objects can be template objects.
(Inherited from IDataObjectLoadOptionsBase.)
Top
Methods
  NameDescription
Public methodAddFilterExpression(String, ExpInnerOperator, Boolean, String)
Adds a filter expression to the load options for a value property with data type 'Boolean'.
(Inherited from IDataObjectLoadOptionsBase.)
Public methodAddFilterExpression(String, ExpInnerOperator, IEnumerableInt32, String)
Adds a filter expression to the load options for a set- of a reference-property.
(Inherited from IDataObjectLoadOptionsBase.)
Public methodAddFilterExpression(String, ExpInnerOperator, DateTime, String)
Adds a filter expression to the load options for a value property with data type 'DateTime'.
(Inherited from IDataObjectLoadOptionsBase.)
Public methodAddFilterExpression(String, ExpInnerOperator, Int32, String)
Adds a filter expression to the load options for a value property with data type 'Integer'.
(Inherited from IDataObjectLoadOptionsBase.)
Public methodAddFilterExpression(String, ExpInnerOperator, String, String)
Adds a filter expression to the load options for a value property with data type 'Text'.
(Inherited from IDataObjectLoadOptionsBase.)
Top
See Also