Class DatabaseModelRecordData
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the DatabaseModel table.
Inheritance
System.Object
DatabaseModelRecordData
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class DatabaseModelRecordData
Remarks
Please use this class instead of a full DatabaseModelRow object when you do not need to create or update a value in the database. Row objects have a large overhead since they carry the corresponding DatabaseModelTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Constructors
DatabaseModelRecordData()
Declaration
public DatabaseModelRecordData()
Fields
DatabaseModelId
Primary key
Declaration
public int DatabaseModelId
Field Value
Type | Description |
---|---|
System.Int32 |
IsDatabaseUnicode
Almost all databases are unicode capable
Declaration
public short IsDatabaseUnicode
Field Value
Type | Description |
---|---|
System.Int16 |
ModelData
Compressed json string containing DatabaseModel of the given version
Declaration
public Stream ModelData
Field Value
Type | Description |
---|---|
System.IO.Stream |
ModelVersion
Model type version name - not the data, but the structure of the model itself
Declaration
public string ModelVersion
Field Value
Type | Description |
---|---|
System.String |
Extension Methods
EnumUtil.MapEnums<From, To>(From)