Class UserAttributeRecordData
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the user_attribute table.
Inherited Members
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class UserAttributeRecordData
Remarks
Please use this class instead of a full UserAttributeRow 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 UserAttributeTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Constructors
UserAttributeRecordData()
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the user_attribute table.
Declaration
public UserAttributeRecordData()
Remarks
Please use this class instead of a full UserAttributeRow 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 UserAttributeTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Fields
AttKey
An identifying string key for the entry
Declaration
public string AttKey
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full UserAttributeRow 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 UserAttributeTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
AttValue
The value of the attribute.
Declaration
public string AttValue
Field Value
Type | Description |
---|---|
string |
Remarks
Please use this class instead of a full UserAttributeRow 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 UserAttributeTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
UserAttributeId
The primary key (auto-incremented)
Declaration
public int UserAttributeId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full UserAttributeRow 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 UserAttributeTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
UserId
The user associated with this attribute.
Declaration
public int UserId
Field Value
Type | Description |
---|---|
int |
Remarks
Please use this class instead of a full UserAttributeRow 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 UserAttributeTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.