Class CustCategoryRecordData
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the cust_category table.
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class CustCategoryRecordData : Object
Remarks
Please use this class instead of a full CustCategoryRow 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 CustCategoryTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Constructors
CustCategoryRecordData()
POCO (Plain Old CLR Object) class that can be used to hold data corresponding to a row from the cust_category table.
Declaration
public CustCategoryRecordData()
Remarks
Please use this class instead of a full CustCategoryRow 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 CustCategoryTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Fields
CategoryId
The reference to the associated category.
Declaration
public int CategoryId
Field Value
Type | Description |
---|---|
Int32 |
Remarks
Please use this class instead of a full CustCategoryRow 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 CustCategoryTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
CustCategoryId
The primary key (auto-incremented)
Declaration
public int CustCategoryId
Field Value
Type | Description |
---|---|
Int32 |
Remarks
Please use this class instead of a full CustCategoryRow 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 CustCategoryTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Fullname
The fullname (compiled from parents' names) for this category. E.g. 'norway/product A/support'.
Declaration
public string Fullname
Field Value
Type | Description |
---|---|
String |
Remarks
Please use this class instead of a full CustCategoryRow 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 CustCategoryTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
LanguageId
The reference to the associated customer language.
Declaration
public int LanguageId
Field Value
Type | Description |
---|---|
Int32 |
Remarks
Please use this class instead of a full CustCategoryRow 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 CustCategoryTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
Name
The external name for this category.
Declaration
public string Name
Field Value
Type | Description |
---|---|
String |
Remarks
Please use this class instead of a full CustCategoryRow 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 CustCategoryTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.
ParentId
The parent category for this cust_category. -1 if this is a toplevel cust_category.
Declaration
public int ParentId
Field Value
Type | Description |
---|---|
Int32 |
Remarks
Please use this class instead of a full CustCategoryRow 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 CustCategoryTableInfo object, which in turn defines fields and aliases; there may be a Sentry on a row, and various other helper objects.