![]() |
Provides simplified data access features to perform SCRUD operation on the database table "core.custom_field_data_types". More...
Public Member Functions | |
| long | Count () |
| Performs SQL count on the table "core.custom_field_data_types". More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldDataType > | Get () |
| Executes a select query on the table "core.custom_field_data_types" to return a all instances of the "CustomFieldDataType" class to export. More... | |
| MixERP.Net.Entities.Core.CustomFieldDataType | Get (string dataType) |
| Executes a select query on the table "core.custom_field_data_types" with a where filter on the column "data_type" to return a single instance of the "CustomFieldDataType" class. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldDataType > | Get (string[] dataTypes) |
| Executes a select query on the table "core.custom_field_data_types" with a where filter on the column "data_type" to return a multiple instances of the "CustomFieldDataType" class. More... | |
| IEnumerable< PetaPoco.CustomField > | GetCustomFields (string resourceId) |
| Custom fields are user defined form elements for core.custom_field_data_types. More... | |
| IEnumerable< DisplayField > | GetDisplayFields () |
| Displayfields provide a minimal name/value context for data binding the row collection of core.custom_field_data_types. More... | |
| void | AddOrEdit (MixERP.Net.Entities.Core.CustomFieldDataType customFieldDataType, List< EntityParser.CustomField > customFields) |
| Inserts or updates the instance of CustomFieldDataType class on the database table "core.custom_field_data_types". More... | |
| object | Add (MixERP.Net.Entities.Core.CustomFieldDataType customFieldDataType) |
| Inserts the instance of CustomFieldDataType class on the database table "core.custom_field_data_types". More... | |
| List< object > | BulkImport (List< MixERP.Net.Entities.Core.CustomFieldDataType > customFieldDataTypes) |
| Inserts or updates multiple instances of CustomFieldDataType class on the database table "core.custom_field_data_types"; More... | |
| void | Update (MixERP.Net.Entities.Core.CustomFieldDataType customFieldDataType, string dataType) |
| Updates the row of the table "core.custom_field_data_types" with an instance of "CustomFieldDataType" class against the primary key value. More... | |
| void | Delete (string dataType) |
| Deletes the row of the table "core.custom_field_data_types" against the primary key value. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldDataType > | GetPagedResult () |
| Performs a select statement on table "core.custom_field_data_types" producing a paged result of 25. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldDataType > | GetPagedResult (long pageNumber) |
| Performs a select statement on table "core.custom_field_data_types" producing a paged result of 25. More... | |
| long | CountWhere (List< EntityParser.Filter > filters) |
| Performs a filtered count on table "core.custom_field_data_types". More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldDataType > | GetWhere (long pageNumber, List< EntityParser.Filter > filters) |
| Performs a filtered select statement on table "core.custom_field_data_types" producing a paged result of 25. More... | |
| long | CountFiltered (string filterName) |
| Performs a filtered count on table "core.custom_field_data_types". More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomFieldDataType > | GetFiltered (long pageNumber, string filterName) |
| Performs a filtered select statement on table "core.custom_field_data_types" producing a paged result of 25. More... | |
Public Member Functions inherited from PetaPoco.DbAccess | |
| void | Validate (AccessTypeEnum type, long loginId, bool noException) |
| Validates application user access rights to execute the function. More... | |
Public Attributes | |
| override string | ObjectNamespace => "core" |
| The schema of this table. Returns literal "core". More... | |
| override string | ObjectName => "custom_field_data_types" |
| The schema unqualified name of this table. Returns literal "custom_field_data_types". More... | |
Properties | |
| long | LoginId [get, set] |
| Login id of application user accessing this table. More... | |
| int | UserId [get, set] |
| User id of application user accessing this table. More... | |
| string | Catalog [get, set] |
| The name of the database on which queries are being executed to. More... | |
Properties inherited from PetaPoco.DbAccess | |
| abstract string | ObjectNamespace [get] |
| abstract string | ObjectName [get] |
| bool | HasAccess [get] |
| bool | Validated [get] |
| bool | SkipValidation [get, set] |
Properties inherited from PetaPoco.IDBAccess | |
| bool | HasAccess [get] |
Provides simplified data access features to perform SCRUD operation on the database table "core.custom_field_data_types".
| object MixERP.Net.Schemas.Core.Data.CustomFieldDataType.Add | ( | MixERP.Net.Entities.Core.CustomFieldDataType | customFieldDataType | ) |
Inserts the instance of CustomFieldDataType class on the database table "core.custom_field_data_types".
| customFieldDataType | The instance of "CustomFieldDataType" class to insert. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| void MixERP.Net.Schemas.Core.Data.CustomFieldDataType.AddOrEdit | ( | MixERP.Net.Entities.Core.CustomFieldDataType | customFieldDataType, |
| List< EntityParser.CustomField > | customFields | ||
| ) |
Inserts or updates the instance of CustomFieldDataType class on the database table "core.custom_field_data_types".
| customFieldDataType | The instance of "CustomFieldDataType" class to insert or update. |
| customFields | The custom field collection. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| List<object> MixERP.Net.Schemas.Core.Data.CustomFieldDataType.BulkImport | ( | List< MixERP.Net.Entities.Core.CustomFieldDataType > | customFieldDataTypes | ) |
Inserts or updates multiple instances of CustomFieldDataType class on the database table "core.custom_field_data_types";
| customFieldDataTypes | List of "CustomFieldDataType" class to import. |
| long MixERP.Net.Schemas.Core.Data.CustomFieldDataType.Count | ( | ) |
Performs SQL count on the table "core.custom_field_data_types".
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| long MixERP.Net.Schemas.Core.Data.CustomFieldDataType.CountFiltered | ( | string | filterName | ) |
Performs a filtered count on table "core.custom_field_data_types".
| filterName | The named filter. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| long MixERP.Net.Schemas.Core.Data.CustomFieldDataType.CountWhere | ( | List< EntityParser.Filter > | filters | ) |
Performs a filtered count on table "core.custom_field_data_types".
| filters | The list of filter conditions. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| void MixERP.Net.Schemas.Core.Data.CustomFieldDataType.Delete | ( | string | dataType | ) |
Deletes the row of the table "core.custom_field_data_types" against the primary key value.
| dataType | The value of the column "data_type" which will be deleted. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldDataType> MixERP.Net.Schemas.Core.Data.CustomFieldDataType.Get | ( | ) |
Executes a select query on the table "core.custom_field_data_types" to return a all instances of the "CustomFieldDataType" class to export.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| MixERP.Net.Entities.Core.CustomFieldDataType MixERP.Net.Schemas.Core.Data.CustomFieldDataType.Get | ( | string | dataType | ) |
Executes a select query on the table "core.custom_field_data_types" with a where filter on the column "data_type" to return a single instance of the "CustomFieldDataType" class.
| dataType | The column "data_type" parameter used on where filter. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldDataType> MixERP.Net.Schemas.Core.Data.CustomFieldDataType.Get | ( | string[] | dataTypes | ) |
Executes a select query on the table "core.custom_field_data_types" with a where filter on the column "data_type" to return a multiple instances of the "CustomFieldDataType" class.
| dataTypes | Array of column "data_type" parameter used on where filter. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<PetaPoco.CustomField> MixERP.Net.Schemas.Core.Data.CustomFieldDataType.GetCustomFields | ( | string | resourceId | ) |
Custom fields are user defined form elements for core.custom_field_data_types.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<DisplayField> MixERP.Net.Schemas.Core.Data.CustomFieldDataType.GetDisplayFields | ( | ) |
Displayfields provide a minimal name/value context for data binding the row collection of core.custom_field_data_types.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldDataType> MixERP.Net.Schemas.Core.Data.CustomFieldDataType.GetFiltered | ( | long | pageNumber, |
| string | filterName | ||
| ) |
Performs a filtered select statement on table "core.custom_field_data_types" producing a paged result of 25.
| pageNumber | Enter the page number to produce the paged result. |
| filterName | The named filter. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldDataType> MixERP.Net.Schemas.Core.Data.CustomFieldDataType.GetPagedResult | ( | ) |
Performs a select statement on table "core.custom_field_data_types" producing a paged result of 25.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldDataType> MixERP.Net.Schemas.Core.Data.CustomFieldDataType.GetPagedResult | ( | long | pageNumber | ) |
Performs a select statement on table "core.custom_field_data_types" producing a paged result of 25.
| pageNumber | Enter the page number to produce the paged result. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.Core.CustomFieldDataType> MixERP.Net.Schemas.Core.Data.CustomFieldDataType.GetWhere | ( | long | pageNumber, |
| List< EntityParser.Filter > | filters | ||
| ) |
Performs a filtered select statement on table "core.custom_field_data_types" producing a paged result of 25.
| pageNumber | Enter the page number to produce the paged result. |
| filters | The list of filter conditions. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| void MixERP.Net.Schemas.Core.Data.CustomFieldDataType.Update | ( | MixERP.Net.Entities.Core.CustomFieldDataType | customFieldDataType, |
| string | dataType | ||
| ) |
Updates the row of the table "core.custom_field_data_types" with an instance of "CustomFieldDataType" class against the primary key value.
| customFieldDataType | The instance of "CustomFieldDataType" class to update. |
| dataType | The value of the column "data_type" which will be updated. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| override string MixERP.Net.Schemas.Core.Data.CustomFieldDataType.ObjectName => "custom_field_data_types" |
The schema unqualified name of this table. Returns literal "custom_field_data_types".
| override string MixERP.Net.Schemas.Core.Data.CustomFieldDataType.ObjectNamespace => "core" |
The schema of this table. Returns literal "core".
|
getset |
The name of the database on which queries are being executed to.
|
getset |
Login id of application user accessing this table.
|
getset |
User id of application user accessing this table.