Class BaseInfo
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Base info class (only carrying the type information).
public abstract class BaseInfo : AbstractObject, IExtensible, IInfo, IAdvancedDataContainer, ICMSObject, IHierarchicalDataContainer, IDataContainer, ISimpleDataContainer, IVirtualHierarchicalObject, IHierarchicalObject, INameIndexable, IMacroObject
- Inheritance
-
objectBaseInfo
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
BaseInfo(ObjectTypeInfo)
Constructor.
protected BaseInfo(ObjectTypeInfo typeInfo)
Parameters
typeInfo
ObjectTypeInfoObject type information
Fields
mStatus
Status of the object.
protected ObjectStatusEnum mStatus
Field Value
Properties
AllowClone
Indicates if the object supports cloning.
protected virtual bool AllowClone { get; set; }
Property Value
- bool
Bindings
Collection of the binding objects for the given object where the current object is a parent of the binding.
public virtual BindingRepository Bindings { get; }
Property Value
CheckUnique
If true, the code name is checked for uniqueness upon saving.
protected virtual bool CheckUnique { get; set; }
Property Value
- bool
ChildDependencies
Collection of the child dependencies for the given object. These are objects which should be included into the parent data (for example class data for BizForms), but aren't direct child of the object.
protected virtual InfoObjectRepository ChildDependencies { get; }
Property Value
Children
Collection of the child objects for the given object.
public virtual InfoObjectRepository Children { get; }
Property Value
ClearCacheMethods
Dictionary with the methods for clearing the internal object cache [columnName] => [clearCacheAction]
protected abstract IDictionary<string, Action<BaseInfo>> ClearCacheMethods { get; }
Property Value
- IDictionary<string, Action<BaseInfo>>
CodeNameColumn
Code name column name of the info record.
protected virtual string CodeNameColumn { get; }
Property Value
- string
Remarks
If the code name column is not known, name of GUIDColumn is returned.
ColumnNames
Column names.
public abstract List<string> ColumnNames { get; }
Property Value
- List<string>
DisplayNameColumn
Display name column name of the info record.
protected virtual string DisplayNameColumn { get; }
Property Value
- string
Remarks
If the display name column is not known, name of CodeNameColumn is returned.
Generalized
Generalized interface of this object.
public virtual GeneralizedInfo Generalized { get; }
Property Value
HasChanged
Returns true if the object changed.
public abstract bool HasChanged { get; }
Property Value
- bool
HasData
Returns true if the object has it's data storage initialized already
[DatabaseMapping(false)]
protected virtual bool HasData { get; }
Property Value
- bool
IsCachedObject
If true, the object is cached within the system for later use
protected virtual bool IsCachedObject { get; set; }
Property Value
- bool
IsComplete
Returns true if the object is complete (has all columns).
[DatabaseMapping(false)]
public virtual bool IsComplete { get; }
Property Value
- bool
IsDisconnected
Returns true if this collection is disconnected from the database
protected virtual bool IsDisconnected { get; }
Property Value
- bool
IsObjectValid
Returns true if the object is considered valid.
protected virtual bool IsObjectValid { get; }
Property Value
- bool
this[string]
Gets or sets the value of the column.
public object this[string columnName] { get; set; }
Parameters
columnName
stringColumn name
Property Value
- object
LogEvents
If true, Events tasks are logged on the object update.
protected virtual bool LogEvents { get; set; }
Property Value
- bool
LogWebFarmTasks
If true, web farm tasks are logged on the object update.
protected virtual bool LogWebFarmTasks { get; set; }
Property Value
- bool
ObjectCategory
Object category.
protected virtual BaseInfo ObjectCategory { get; }
Property Value
ObjectCodeName
Object code name.
protected virtual string ObjectCodeName { get; set; }
Property Value
- string
Remarks
The returned value is evaluated from either CodeNameColumn or GUIDColumn column. If none of the columns is known, string.Empty is returned.
ObjectDisplayName
Object display name.
protected virtual string ObjectDisplayName { get; set; }
Property Value
- string
Remarks
The returned value is evaluated from first known column in following column sequence: DisplayNameColumn, CodeNameColumn, GUIDColumn, IDColumn, ObjectType.
When evaluating on IDColumn, returned value consists of both ObjectType and IDColumn.
ObjectFullName
Object full name if exists
protected virtual string ObjectFullName { get; }
Property Value
- string
ObjectGUID
Object GUID.
protected virtual Guid ObjectGUID { get; set; }
Property Value
- Guid
ObjectID
Object ID.
protected virtual int ObjectID { get; set; }
Property Value
- int
ObjectLastModified
Last modified time.
protected virtual DateTime ObjectLastModified { get; set; }
Property Value
- DateTime
ObjectOrder
Returns the order of the object among the other objects.
protected virtual int ObjectOrder { get; }
Property Value
- int
ObjectParent
Object parent.
protected virtual BaseInfo ObjectParent { get; set; }
Property Value
ObjectParentID
Object parent ID.
protected virtual int ObjectParentID { get; set; }
Property Value
- int
ObjectStatus
Returns the current status of the object.
[DatabaseMapping(false)]
protected virtual ObjectStatusEnum ObjectStatus { get; set; }
Property Value
OtherBindings
Collection of the binding objects for the given object where the current object is not a parent of the binding (parent object is on the second side).
public virtual OtherBindingRepository OtherBindings { get; }
Property Value
Parent
Object parent
public virtual BaseInfo Parent { get; }
Property Value
ParentObjectType
Parent object type.
protected virtual string ParentObjectType { get; }
Property Value
- string
Processes
Collection of the processes belonging to the object.
public virtual IInfoObjectCollection Processes { get; }
Property Value
Properties
Properties of the object available through GetProperty.
public virtual List<string> Properties { get; }
Property Value
- List<string>
ReferringObjects
Collection of the objects depending on this object (object which have FK to this object).
protected virtual InfoObjectRepository ReferringObjects { get; }
Property Value
ScheduledTasks
Collection of the scheduled tasks belonging to the object.
public virtual IInfoObjectCollection ScheduledTasks { get; }
Property Value
TouchCacheDependencies
If true, cache dependencies are touched when the object is changed.
protected virtual bool TouchCacheDependencies { get; set; }
Property Value
- bool
TypeInfo
Object type information.
public virtual ObjectTypeInfo TypeInfo { get; protected set; }
Property Value
UpdateTimeStamp
If true, timestamp of the object is updated when saved.
protected virtual bool UpdateTimeStamp { get; set; }
Property Value
- bool
ValidateCodeName
If true, the code name is validated upon saving.
protected virtual bool ValidateCodeName { get; set; }
Property Value
- bool
Methods
AddColumnPrefixesWhereCondition(string, string, IEnumerable<string>)
Adds restriction to given where
filtering out all rows where given column starts with one of excluded prefixes found in TypeInfo default data settings.
protected string AddColumnPrefixesWhereCondition(string where, string columnName, IEnumerable<string> excludedNames = null)
Parameters
where
stringOriginal where condition
columnName
stringColumn that must not start with excluded prefixes.
excludedNames
IEnumerable<string>Objects with display names and code names starting with these expressions are filtered out.
Returns
- string
AddDependencyDefaultDataWhereCondition(string, BaseInfo, string, bool, string, string, IEnumerable<string>)
Adds default data where condition of given dependency on given dependencyIDColumn
to given where
condition.
Returns original where
condition if no such dependency exists.
protected static string AddDependencyDefaultDataWhereCondition(string where, BaseInfo dependencyInfo, string dependencyIDColumn, bool recursive, string op = "AND", string dependencyTargetIDColumn = null, IEnumerable<string> excludedNames = null)
Parameters
where
stringOriginal where condition
dependencyInfo
BaseInfoBaseInfo of dependency object type.
dependencyIDColumn
stringColumn with ID to specified dependency object.
recursive
boolIndicates whether added dependency where condition should process its dependencies
op
stringOperator used to connect old where with the new one. By default this is 'AND'.
dependencyTargetIDColumn
stringName of the column on dependency target object that contains dependency ID. By default ID column of the target object is used.
excludedNames
IEnumerable<string>Objects with display names and code names starting with these expressions are filtered out.
Returns
- string
BuildObjectPath(string, string, string, string, out int)
Builds the path from the given column.
protected virtual string BuildObjectPath(string parentColumName, string pathColumnName, string levelColumnName, string pathPartColumn, out int level)
Parameters
parentColumName
stringColumn of the parent ID
pathColumnName
stringColumn name to build the path from
levelColumnName
stringColumn name of the level
pathPartColumn
stringName of the column which creates the path (IDColumn for IDPath, CodeNameColumn for name path)
level
intLevel of the object within the tree hierarchy
Returns
- string
ChangedColumns()
Returns list of column names which values were changed.
public virtual List<string> ChangedColumns()
Returns
- List<string>
List of column names
CheckDependencies(bool)
Checks object for dependent objects. Returns true if there is at least one dependent object. First tries to execute checkdependencies query, if not found, an automatic process is executed.
protected virtual bool CheckDependencies(bool reportAll = true)
Parameters
reportAll
boolIf false, only required dependency constraints (without default value) are returned, otherwise checks all dependency relations.
Returns
- bool
Remarks
Automated process is based on DependsOn property. Child objects are not included. Objects whose ObjectPathSettings value contains a prefix matching the current object's path value are also not included.
CheckUniqueCodeName()
Checks if the object has unique code name. Returns true if the object has unique code name.
public virtual bool CheckUniqueCodeName()
Returns
- bool
Clear()
Clears hashtable with cached properties of all object types.
public static void Clear()
ClearCachedValues(string)
Clears the cached values depending on the given column value.
protected void ClearCachedValues(string columnName = null)
Parameters
columnName
stringColumn name, if not provided, all cached values are cleared.
CloneObject(bool)
Creates the clone of the object
public abstract BaseInfo CloneObject(bool clear = false)
Parameters
clear
boolIf true, the object is cleared to be able to create new object
Returns
ContainsColumn(string)
Returns true if the object contains given column.
public abstract bool ContainsColumn(string columnName)
Parameters
columnName
stringColumn name
Returns
- bool
CopyMemoryProperties(BaseInfo)
Copies memory properties
protected void CopyMemoryProperties(BaseInfo infoObj)
Parameters
infoObj
BaseInfoTarget object instance
DataChanged(string)
Returns true if the object changed.
public virtual bool DataChanged(string excludedColumns)
Parameters
excludedColumns
stringList of columns excluded from change (separated by ';')
Returns
- bool
Delete()
Deletes the object using appropriate provider
public virtual bool Delete()
Returns
- bool
DeleteObject()
Deletes the object using appropriate provider.
protected abstract void DeleteObject()
Destroy()
Destroys the object including its version history using appropriate provider
public virtual bool Destroy()
Returns
- bool
Disconnect()
Disconnects the collection from the database.
protected void Disconnect()
EnsureBinaryData()
Makes sure that the binary data is loaded into binary column of the object when StoreToFileSystem is true.
protected virtual byte[] EnsureBinaryData()
Returns
- byte[]
EnsureBinaryData(bool)
Makes sure that the binary data is loaded into binary column of the object.
protected virtual byte[] EnsureBinaryData(bool forceLoadFromDB)
Parameters
forceLoadFromDB
boolIf true, the data are loaded even from DB
Returns
- byte[]
EnsureCodeName()
Ensures the code name of the object if not set
protected virtual void EnsureCodeName()
EnsureGUID()
Ensures the GUID of the object
protected virtual Guid EnsureGUID()
Returns
- Guid
EnsureHierarchyColumns()
Ensures the IDPath and Level columns.
protected virtual void EnsureHierarchyColumns()
EnsureLastModified()
Ensures the last modified time stamp of the object
protected virtual void EnsureLastModified()
EnsureUniqueCodeName()
Ensures that the object has a unique code name within it's context
protected virtual void EnsureUniqueCodeName()
ExecuteWithOriginalData(Action)
Executes the given action using original data of the object
public abstract void ExecuteWithOriginalData(Action action)
Parameters
action
ActionAction to execute
ExportDefaultData(string, IEnumerable<string>)
Exports the default object installation data
protected virtual void ExportDefaultData(string filePath, IEnumerable<string> excludedNames = null)
Parameters
filePath
stringFile path for the export
excludedNames
IEnumerable<string>Objects with display names and code names starting with these expressions are filtered out.
GetAutomaticCodeName()
Gets the automatic code name for the object
protected virtual string GetAutomaticCodeName()
Returns
- string
GetBooleanValue(string, bool)
Gets the boolean value from the object.
public virtual bool GetBooleanValue(string columnName, bool defaultValue)
Parameters
columnName
stringColumn name
defaultValue
boolDefault value
Returns
- bool
GetCacheDependencies()
Gets collection of dependency keys to be touched when modifying the current object.
protected virtual ICollection<string> GetCacheDependencies()
Returns
- ICollection<string>
GetChildDependencies()
Gets the child dependencies repository
protected InfoObjectRepository GetChildDependencies()
Returns
GetChildWhereCondition(WhereCondition, string)
Gets the child object where condition.
protected virtual WhereCondition GetChildWhereCondition(WhereCondition where, string objectType)
Parameters
where
WhereConditionOriginal where condition
objectType
stringObject type of the child object
Returns
GetClearCacheMethods(ObjectTypeInfo)
Gets the dictionary of methods for clearing the cache inside the info object [columnName] => [clearCacheAction]
protected static IDictionary<string, Action<BaseInfo>> GetClearCacheMethods(ObjectTypeInfo typeInfo)
Parameters
typeInfo
ObjectTypeInfoType info
Returns
- IDictionary<string, Action<BaseInfo>>
GetColumnNames()
Gets the default list of column names for this class
protected abstract List<string> GetColumnNames()
Returns
- List<string>
GetCurrentObjectPathPart(string)
Builds the path from the given column.
protected virtual string GetCurrentObjectPathPart(string pathPartColumn)
Parameters
pathPartColumn
stringName of the column which creates the path (IDColumn for IDPath, CodeNameColumn for name path)
Returns
- string
GetCustomProperties()
Gets list of custom properties.
protected virtual List<string> GetCustomProperties()
Returns
- List<string>
GetDataQueryInternal()
Gets the data query for this object type
protected virtual IDataQuery GetDataQueryInternal()
Returns
GetDateTimeValue(string, DateTime)
Gets the DateTime value from the object.
public virtual DateTime GetDateTimeValue(string columnName, DateTime defaultValue)
Parameters
columnName
stringColumn name
defaultValue
DateTimeDefault value
Returns
- DateTime
GetDecimalValue(string, decimal)
Gets the decimal value from the object.
public virtual decimal GetDecimalValue(string columnName, decimal defaultValue)
Parameters
columnName
stringColumn name
defaultValue
decimalDefault value
Returns
- decimal
GetDefaultData(IEnumerable<string>)
Returns the default object installation data
protected virtual DataSet GetDefaultData(IEnumerable<string> excludedNames = null)
Parameters
excludedNames
IEnumerable<string>Objects with display names and code names starting with these expressions are filtered out.
Returns
- DataSet
GetDefaultDataExportColumns()
Returns names of all columns that should be exported with default data as a comma separated string.
protected virtual string GetDefaultDataExportColumns()
Returns
- string
GetDefaultDataWhereCondition(bool, IEnumerable<string>)
Gets the where condition to filter out the default installation data
protected virtual string GetDefaultDataWhereCondition(bool recursive = true, IEnumerable<string> excludedNames = null)
Parameters
recursive
boolIndicates whether where condition should contain further dependency conditions.
excludedNames
IEnumerable<string>Objects with display names and code names starting with these expressions are filtered out.
Returns
- string
GetDefaultObject()
Returns default object of given object type. Has to be overridden in specific info. Returns null by default. Example is UserInfo which returns user specified in the settings or Global Administrator.
protected virtual BaseInfo GetDefaultObject()
Returns
GetDependenciesNames(bool, int)
Returns a list of object names which depend on this object. First tries to execute checkdependencies query, if not found, an automatic process is executed.
protected virtual List<string> GetDependenciesNames(bool reportAll = true, int topN = 10)
Parameters
reportAll
boolIf false, only required dependency constraints (without default value) are returned, otherwise checks all dependency relations.
topN
intNumber of dependent objects to return, 0 means no limitation.
Returns
- List<string>
Remarks
Automated process is based on DependsOn property. Child objects are not included. Objects whose ObjectPathSettings value contains a prefix matching the current object's path value are also not included.
GetDependenciesNamesAuto(bool, int)
Returns a list of object names which depend on this object.
protected virtual List<string> GetDependenciesNamesAuto(bool reportAll, int topN)
Parameters
reportAll
boolIf false, only required dependency constraints (without default value) are returned, otherwise checks all dependency relations.
topN
intNumber of dependent objects to return, 0 means no limitation.
Returns
- List<string>
Remarks
List of objects is based on DependsOn property. Child objects are not included. Objects whose ObjectPathSettings value contains a prefix matching the current object's path value are also not included.
GetDependencyObjectType(ObjectDependency)
Gets dependency object type
public virtual string GetDependencyObjectType(ObjectDependency dep)
Parameters
dep
ObjectDependencyObject dependency settings
Returns
- string
GetDoubleValue(string, double)
Gets the double value from the object.
public virtual double GetDoubleValue(string columnName, double defaultValue)
Parameters
columnName
stringColumn name
defaultValue
doubleDefault value
Returns
- double
GetExisting()
Returns the existing object based on current object data.
protected virtual BaseInfo GetExisting()
Returns
GetExistingBase(IWhereCondition, bool)
Returns single info object and ensures correct GUID vs. code name priority is used (if applicable) after resolving provided whereCondition
.
If no object match provided whereCondition
, null is returned.
protected BaseInfo GetExistingBase(IWhereCondition whereCondition, bool includeTypeCondition = true)
Parameters
whereCondition
IWhereConditionincludeTypeCondition
bool
Returns
GetExistingWhereCondition()
Gets a where condition to find an existing object based on current object
protected virtual WhereCondition GetExistingWhereCondition()
Returns
GetExistingWhereCondition(bool)
Gets a where condition to find an existing object based on current object
protected WhereCondition GetExistingWhereCondition(bool applyTypeCondition)
Parameters
applyTypeCondition
boolIf true, type condition is applied to the resulting where condition
Returns
GetFullObjectName(bool)
Returns the name of the object within its parent hierarchy.
protected virtual string GetFullObjectName(bool includeParent)
Parameters
includeParent
boolIf true, the parent object name is included to the object name
Returns
- string
GetGeneralizedInfo()
Gets the generalized info for this object
protected virtual GeneralizedInfo GetGeneralizedInfo()
Returns
GetGuidValue(string, Guid)
Gets the guid value from the object.
public virtual Guid GetGuidValue(string columnName, Guid defaultValue)
Parameters
columnName
stringColumn name
defaultValue
GuidDefault value
Returns
- Guid
GetIDPathPartLength()
Returns the length of a part of IDPath.
protected virtual int GetIDPathPartLength()
Returns
- int
GetIntegerValue(string, int)
Gets the integer value from the object.
public virtual int GetIntegerValue(string columnName, int defaultValue)
Parameters
columnName
stringColumn name
defaultValue
intDefault value
Returns
- int
GetLastObjectOrder(string)
Returns number which will be the last order within all the other items (according to Parent settings). I.e. returns largest existing order + 1.
protected virtual int GetLastObjectOrder(string orderColumn)
Parameters
orderColumn
stringName of the order column. If null, OrderColumn from TypeInfo is taken
Returns
- int
GetLockObject()
Gets the global lock object for all the instances of the object (locked on "objectType_objectId").
protected virtual object GetLockObject()
Returns
- object
GetNameCollisions(int, string, string, bool)
Gets the list of the name collisions of the given object
protected IEnumerable<string> GetNameCollisions(int currentObjectId, string columnName, string searchName, bool exactMatch)
Parameters
currentObjectId
intCurrent object ID
columnName
stringColumn name
searchName
stringSearch name for collision
exactMatch
boolIf true, the names must match exactly
Returns
- IEnumerable<string>
GetNamePathPartColumn()
Returns the name of the column which is used to build the NamePath
protected virtual string GetNamePathPartColumn()
Returns
- string
GetObject(IWhereCondition, bool)
Gets the object by specified where condition.
protected BaseInfo GetObject(IWhereCondition where, bool includeTypeCondition = true)
Parameters
where
IWhereConditionWhere condition
includeTypeCondition
boolIf true, the type condition is included, otherwise selects all data from the data source
Returns
GetObject(int)
Gets the object by its ID.
public BaseInfo GetObject(int objectId)
Parameters
objectId
intObject ID
Returns
Exceptions
- InvalidOperationException
Thrown when IDColumn is not set.
GetObjectChildren()
Gets the object children repository
protected InfoObjectRepository GetObjectChildren()
Returns
GetObjectIdentifier()
Gets the object identifier that uniquely identifies the object
protected string GetObjectIdentifier()
Returns
- string
GetObjectKey()
Gets the unique string key for the object.
protected virtual string GetObjectKey()
Returns
- string
GetObjectName()
Returns object name combining object type name and object display name.
protected virtual string GetObjectName()
Returns
- string
GetObjectOrderID()
Returns ID of the item being ordered. By default return ObjectID. This is overridden in TreeNode, where NodeID has to be supplied.
protected virtual int GetObjectOrderID()
Returns
- int
GetObjectTypeForColumn(string)
Gets the object type for the given column or null if the object type is not found or unknown.
protected virtual string GetObjectTypeForColumn(string columnName)
Parameters
columnName
stringColumn name to check
Returns
- string
GetOrderIdentityWhereCondition()
Gets order identity where condition to identify the object to be ordered
protected virtual WhereCondition GetOrderIdentityWhereCondition()
Returns
GetOrderQueryParameters(string, string, bool)
Creates QueryDataParameters with special macros for object order management.
protected virtual QueryDataParameters GetOrderQueryParameters(string orderColumn, string nameColumn = null, bool asc = true)
Parameters
orderColumn
stringName of the order column. If null, OrderColumn from TypeInfo is taken
nameColumn
stringName of the column by which the order should be initialized (if not set, displayname column is used)
asc
boolIf true the order will be ascending (default is true)
Returns
GetOriginalValue(string)
Returns the original value of column.
public virtual object GetOriginalValue(string columnName)
Parameters
columnName
stringColumn name
Returns
- object
GetOtherBindings()
Gets the repository of other bindings
protected OtherBindingRepository GetOtherBindings()
Returns
GetParent()
Returns the parent object.
protected virtual BaseInfo GetParent()
Returns
GetProperty(string)
Gets the property value.
public virtual object GetProperty(string columnName)
Parameters
columnName
stringColumn name
Returns
- object
GetPropertyType(string)
Gets the type of the given property
protected virtual Type GetPropertyType(string columnName)
Parameters
columnName
stringProperty name
Returns
- Type
GetReferringObjects()
Gets the repository of depending objects
protected InfoObjectRepository GetReferringObjects()
Returns
GetRegisteredProperties()
Gets list of registered properties.
protected virtual List<string> GetRegisteredProperties()
Returns
- List<string>
GetSiblingsQueryInternal(Action<DataQuerySettings>)
Gets the parameterized query to get siblings of the object (If there is no parent-child hierarchy, query is parameterized for all objects)
protected virtual IDataQuery GetSiblingsQueryInternal(Action<DataQuerySettings> parameters)
Parameters
parameters
Action<DataQuerySettings>Parameters for the data retrieval
Returns
GetSiblingsWhereCondition()
Creates where condition according to Parent settings.
protected virtual WhereCondition GetSiblingsWhereCondition()
Returns
GetStringValue(string, string)
Gets the string value from the object.
public virtual string GetStringValue(string columnName, string defaultValue)
Parameters
columnName
stringColumn name
defaultValue
stringDefault value
Returns
- string
GetUniqueCodeName(string, int)
Returns the unique code name for the specified object, does not check duplicity if duplicity occurs within the currentObjectId.
protected virtual string GetUniqueCodeName(string codeName, int currentObjectId)
Parameters
codeName
stringOriginal code name
currentObjectId
intCurrent object ID
Returns
- string
GetUniqueDisplayName(string, int, bool)
Returns the unique display name for the specified object.
protected virtual string GetUniqueDisplayName(string displayName, int currentObjectId, bool ensureLength = true)
Parameters
displayName
stringOriginal display name
currentObjectId
intCurrent object ID
ensureLength
boolIf true, maximal display name length is ensured
Returns
- string
GetUniqueName(string, int, string, string, string, bool)
Returns the unique code name for the specified object, does not check duplicity if duplicity occurs within the currentObjectId.
protected string GetUniqueName(string name, int currentObjectId, string columnName, string suffixFormat, string suffixFormatRegex, bool ensureLength)
Parameters
name
stringOriginal code name
currentObjectId
intCurrent object ID
columnName
stringName of the column in which the uniqueness should be preserved (CodeNameColumn/DisplayNameColumn)
suffixFormat
stringFormatting string for the suffix (for example '_{0}' for code name or ' ({0})' for display name
suffixFormatRegex
stringRegex for formatting suffix (needed to remove suffix before finding the possible match in DB)
ensureLength
boolIf true, maximal code name length is ensured
Returns
- string
GetUniqueNameWhereCondition(string, string, int, bool)
Constructs base where condition for checking column value uniqueness. This method can be overridden in child classes to add more conditions.
protected virtual WhereCondition GetUniqueNameWhereCondition(string columnName, string searchName, int currentObjectId, bool exactMatch)
Parameters
columnName
stringName of the column in which the uniqueness should be preserved (CodeNameColumn/DisplayNameColumn)
searchName
stringName which should be saved in the column (eventually with suffix)
currentObjectId
intID of the current object (this object will be excluded from the search for duplicate names)
exactMatch
boolIf true, the names must match exactly
Returns
- WhereCondition
Where condition used to check for name uniqueness
GetValue(string)
Gets the object value.
public virtual object GetValue(string columnName)
Parameters
columnName
stringColumn name
Returns
- object
InitObjectsOrder(string, string, bool)
Inits the proper order of the sibling objects so the order column is consistent.
protected virtual void InitObjectsOrder(string orderColumn, string nameColumn = null, bool ascending = true)
Parameters
orderColumn
stringName of the column that is used for storing the object's order. If null, OrderColumn is taken from TypeInfo.
nameColumn
stringName of the column by which the order is to be set. DisplayNameColumn is used if not given.
ascending
boolIndicates whether the order is ascending or descending (ascending order is used by default).
InitObjectsOrderPostprocessing()
Method called after the InitObjectOrder method is called. Override this to do further actions after order initialization.
protected virtual void InitObjectsOrderPostprocessing()
Insert()
Inserts the object using appropriate provider
public virtual void Insert()
InsertAsClone(CloneSettings, CloneResult)
Inserts the object as a new object to the DB with inner data and structure (according to given settings) cloned from the original.
protected virtual BaseInfo InsertAsClone(CloneSettings settings, CloneResult result)
Parameters
settings
CloneSettingsCloning settings
result
CloneResultResult of the cloning - messages in this object will be altered by processing this method
Returns
- BaseInfo
Returns the newly created clone
InsertAsCloneInternal(CloneSettings, CloneResult, BaseInfo)
This method is called on cloned object prepared in memory by InsertAsClone method. Override if you need to do further actions before inserting actual object to DB (insert special objects, modify foreign keys, copy files, etc.). Calls Insert() by default.
protected virtual void InsertAsCloneInternal(CloneSettings settings, CloneResult result, BaseInfo originalObject)
Parameters
settings
CloneSettingsCloning settings
result
CloneResultResult of the cloning - messages in this object will be altered by processing this method
originalObject
BaseInfoOriginal source BaseInfo (object being cloned)
InsertAsClonePostprocessing(CloneSettings, CloneResult, BaseInfo)
This method is called once the object is completely cloned (with all children, bindings, etc.). Override if you need to do further actions after the object has been cloned.
protected virtual void InsertAsClonePostprocessing(CloneSettings settings, CloneResult result, BaseInfo originalObject)
Parameters
settings
CloneSettingsCloning settings
result
CloneResultResult of the cloning - messages in this object will be altered by processing this method
originalObject
BaseInfoOriginal source BaseInfo (object being cloned)
Invalidate(bool)
Invalidates the object in the object table.
protected virtual void Invalidate(bool keepThisInstanceValid)
Parameters
keepThisInstanceValid
boolIf true, this object is marked as updated to behave as valid
IsChildOf(BaseInfo)
Returns true if the object is child of the given object. If parameter parent is null, returns true only if the object is not a child of any object.
protected virtual bool IsChildOf(BaseInfo parent)
Parameters
parent
BaseInfoParent to check
Returns
- bool
IsObjectInvalid(DateTime)
Returns true if the object is invalid.
protected virtual bool IsObjectInvalid(DateTime lastValid)
Parameters
lastValid
DateTimeTime when the object was last known as valid
Returns
- bool
ItemChanged(string)
Returns true if the item on specified column name changed.
public virtual bool ItemChanged(string columnName)
Parameters
columnName
stringColumn name
Returns
- bool
LoadData(LoadDataSettings)
Loads the object using the given settings
protected abstract void LoadData(LoadDataSettings settings)
Parameters
settings
LoadDataSettingsData settings
MacroRepresentation()
By default, BaseInfo has no special macro representation.
public virtual object MacroRepresentation()
Returns
- object
MakeComplete(bool)
Makes the object data complete.
public virtual void MakeComplete(bool loadFromDb)
Parameters
loadFromDb
boolIf true, the data to complete the object is loaded from database
NewObject(LoadDataSettings)
Creates new object of the given class based on the given settings
protected abstract BaseInfo NewObject(LoadDataSettings settings)
Parameters
settings
LoadDataSettingsData settings
Returns
Reconnect()
Reconnects the collection to the database.
protected void Reconnect()
RemoveObjectDependencies(bool, bool)
Removes object dependencies. First tries to execute removedependencies query, if not found, automatic process is executed.
protected virtual void RemoveObjectDependencies(bool deleteAll = false, bool clearCache = true)
Parameters
deleteAll
boolIf false, only required dependencies are deleted, dependencies with default value are replaced with default value and nullable values are replaced with null
clearCache
boolIf true, caches of all object types which were potentially modified are cleared (provider hashtables and object type cache dummy keys)
ResetChanges()
Resets the object changes and keeps the new values as unchanged according to the asUnchanged parameter.
public abstract void ResetChanges()
RevertChanges()
Reverts the object changes to the original values.
public abstract void RevertChanges()
SetObject()
Updates the object using appropriate provider.
protected abstract void SetObject()
SetObjectAlphabeticalOrder(string, string)
Moves the object to the right position according to the custom order.
protected void SetObjectAlphabeticalOrder(string orderColumn, string nameColumn)
Parameters
orderColumn
stringName of the order column. If null, OrderColumn from TypeInfo is taken
nameColumn
stringColumn by the content of which the alphabetical order will be set
SetObjectOrder(int, bool, string)
Moves the object to the specified order. The move is done within the object's siblings.
protected void SetObjectOrder(int targetOrder, bool relativeOrder, string orderColumn)
Parameters
targetOrder
intDesired order of the object.
relativeOrder
boolIf true, the
targetOrder
is taken as a relative order from current order position.orderColumn
stringName of the order column. If null, OrderColumn from TypeInfo is taken
SetObjectOrderPostprocessing()
Method which is called after the order of the object was changed. Generates webfarm tasks by default.
protected virtual void SetObjectOrderPostprocessing()
SetReadOnly()
Locks the object as a read-only
protected abstract void SetReadOnly()
SetValue(string, object)
Sets the object value.
public abstract bool SetValue(string columnName, object value)
Parameters
columnName
stringvalue
object
Returns
- bool
SetValue(string, object, bool)
Sets the object value to the nullable column.
public virtual void SetValue(string columnName, object value, bool condition)
Parameters
columnName
stringColumn name
value
objectNew value
condition
boolCondition for the valid value, if false, NULL is saved
SetValue(string, object, object)
Sets the object value to the nullable column.
public virtual void SetValue(string columnName, object value, object nullValue)
Parameters
columnName
stringColumn name
value
objectNew value
nullValue
objectNull value, if matched, NULL is saved
SortAlphabetically(bool, string, string)
Sort objects alphabetically.
protected void SortAlphabetically(bool ascending, string orderColumn, string nameColumn)
Parameters
ascending
boolIndicates whether the order will be ascending or descending.
orderColumn
stringName of the column that is used for storing the object's order. If null, OrderColumn is taken from TypeInfo.
nameColumn
stringName of the column by which the alphabetical order will be set.
SubmitChanges(bool)
Submits the changes in the object to the database.
public virtual void SubmitChanges(bool withCollections)
Parameters
withCollections
boolIf true, also submits the changes in the underlying collections of the object (Children, ChildDependencies, Bindings, OtherBindings)
ToMacroString()
Returns the default text representation in the macros.
public virtual string ToMacroString()
Returns
- string
ToString()
Returns the text representation of the object
public override string ToString()
Returns
- string
TryGetProperty(string, out object)
Returns value of property.
public virtual bool TryGetProperty(string columnName, out object value)
Parameters
columnName
stringColumn name
value
objectReturns the value
Returns
- bool
Returns true if the operation was successful (the value was present or at least property exists)
TryGetProperty(string, out object, bool)
Returns value of property.
public virtual bool TryGetProperty(string columnName, out object value, bool notNull)
Parameters
columnName
stringColumn name
value
objectReturns the value
notNull
boolIf true, the property attempts to return non-null values, at least it returns the empty object of the correct type
Returns
- bool
Returns true if the operation was successful (the value was present)
TryGetValue(string, out object)
Returns value of column.
public abstract bool TryGetValue(string columnName, out object value)
Parameters
columnName
stringColumn name
value
objectReturns the value
Returns
- bool
Returns true if the operation was successful (the value was present)
Update()
Updates the database entity using appropriate provider
public virtual void Update()
Validate()
Validates whether the info object's state satisfies domain specific constraints and returns the validation result.
protected abstract InfoValidationResult Validate()
Returns
- InfoValidationResult
Returns validation result with IsValid set to true, if value is valid. Otherwise returns result with the flag set to false and a corresponding error message.
WriteDefaultData(string, DataSet)
Writes the default object installation data into xml file
protected virtual void WriteDefaultData(string filePath, DataSet data)
Parameters
filePath
stringFile path for the export
data
DataSetDefault data to write
Operators
implicit operator GeneralizedInfo(BaseInfo)
Implicit operator for conversion from BaseInfo class to GeneralizedInfo
public static implicit operator GeneralizedInfo(BaseInfo info)
Parameters
info
BaseInfoInfo object
Returns
implicit operator BaseInfo(GeneralizedInfo)
Implicit operator for conversion from GeneralizedInfo class to BaseInfo
public static implicit operator BaseInfo(GeneralizedInfo info)
Parameters
info
GeneralizedInfoInfo object