![]() |
Provides simplified data access features to perform SCRUD operation on the database table "core.custom_fields". More...
Public Member Functions | |
| long | Count () |
| Performs SQL count on the table "core.custom_fields". More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomField > | Get () |
| Executes a select query on the table "core.custom_fields" to return a all instances of the "CustomField" class to export. More... | |
| MixERP.Net.Entities.Core.CustomField | Get (long customFieldId) |
| Executes a select query on the table "core.custom_fields" with a where filter on the column "custom_field_id" to return a single instance of the "CustomField" class. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomField > | Get (long[] customFieldIds) |
| Executes a select query on the table "core.custom_fields" with a where filter on the column "custom_field_id" to return a multiple instances of the "CustomField" class. More... | |
| IEnumerable< PetaPoco.CustomField > | GetCustomFields (string resourceId) |
| Custom fields are user defined form elements for core.custom_fields. More... | |
| IEnumerable< DisplayField > | GetDisplayFields () |
| Displayfields provide a minimal name/value context for data binding the row collection of core.custom_fields. More... | |
| void | AddOrEdit (MixERP.Net.Entities.Core.CustomField customField, List< EntityParser.CustomField > customFields) |
| Inserts or updates the instance of CustomField class on the database table "core.custom_fields". More... | |
| object | Add (MixERP.Net.Entities.Core.CustomField customField) |
| Inserts the instance of CustomField class on the database table "core.custom_fields". More... | |
| List< object > | BulkImport (List< MixERP.Net.Entities.Core.CustomField > customFields) |
| Inserts or updates multiple instances of CustomField class on the database table "core.custom_fields"; More... | |
| void | Update (MixERP.Net.Entities.Core.CustomField customField, long customFieldId) |
| Updates the row of the table "core.custom_fields" with an instance of "CustomField" class against the primary key value. More... | |
| void | Delete (long customFieldId) |
| Deletes the row of the table "core.custom_fields" against the primary key value. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomField > | GetPagedResult () |
| Performs a select statement on table "core.custom_fields" producing a paged result of 25. More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomField > | GetPagedResult (long pageNumber) |
| Performs a select statement on table "core.custom_fields" producing a paged result of 25. More... | |
| long | CountWhere (List< EntityParser.Filter > filters) |
| Performs a filtered count on table "core.custom_fields". More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomField > | GetWhere (long pageNumber, List< EntityParser.Filter > filters) |
| Performs a filtered select statement on table "core.custom_fields" producing a paged result of 25. More... | |
| long | CountFiltered (string filterName) |
| Performs a filtered count on table "core.custom_fields". More... | |
| IEnumerable< MixERP.Net.Entities.Core.CustomField > | GetFiltered (long pageNumber, string filterName) |
| Performs a filtered select statement on table "core.custom_fields" 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_fields" |
| The schema unqualified name of this table. Returns literal "custom_fields". 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_fields".
| object MixERP.Net.Schemas.Core.Data.CustomField.Add | ( | MixERP.Net.Entities.Core.CustomField | customField | ) |
Inserts the instance of CustomField class on the database table "core.custom_fields".
| customField | The instance of "CustomField" class to insert. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| void MixERP.Net.Schemas.Core.Data.CustomField.AddOrEdit | ( | MixERP.Net.Entities.Core.CustomField | customField, |
| List< EntityParser.CustomField > | customFields | ||
| ) |
Inserts or updates the instance of CustomField class on the database table "core.custom_fields".
| customField | The instance of "CustomField" 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.CustomField.BulkImport | ( | List< MixERP.Net.Entities.Core.CustomField > | customFields | ) |
Inserts or updates multiple instances of CustomField class on the database table "core.custom_fields";
| customFields | List of "CustomField" class to import. |
| long MixERP.Net.Schemas.Core.Data.CustomField.Count | ( | ) |
Performs SQL count on the table "core.custom_fields".
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| long MixERP.Net.Schemas.Core.Data.CustomField.CountFiltered | ( | string | filterName | ) |
Performs a filtered count on table "core.custom_fields".
| 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.CustomField.CountWhere | ( | List< EntityParser.Filter > | filters | ) |
Performs a filtered count on table "core.custom_fields".
| 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.CustomField.Delete | ( | long | customFieldId | ) |
Deletes the row of the table "core.custom_fields" against the primary key value.
| customFieldId | The value of the column "custom_field_id" which will be deleted. |
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.Core.CustomField> MixERP.Net.Schemas.Core.Data.CustomField.Get | ( | ) |
Executes a select query on the table "core.custom_fields" to return a all instances of the "CustomField" class to export.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| MixERP.Net.Entities.Core.CustomField MixERP.Net.Schemas.Core.Data.CustomField.Get | ( | long | customFieldId | ) |
Executes a select query on the table "core.custom_fields" with a where filter on the column "custom_field_id" to return a single instance of the "CustomField" class.
| customFieldId | The column "custom_field_id" 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.CustomField> MixERP.Net.Schemas.Core.Data.CustomField.Get | ( | long[] | customFieldIds | ) |
Executes a select query on the table "core.custom_fields" with a where filter on the column "custom_field_id" to return a multiple instances of the "CustomField" class.
| customFieldIds | Array of column "custom_field_id" 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.CustomField.GetCustomFields | ( | string | resourceId | ) |
Custom fields are user defined form elements for core.custom_fields.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<DisplayField> MixERP.Net.Schemas.Core.Data.CustomField.GetDisplayFields | ( | ) |
Displayfields provide a minimal name/value context for data binding the row collection of core.custom_fields.
| UnauthorizedException | Thown when the application user does not have sufficient privilege to perform this action. |
| IEnumerable<MixERP.Net.Entities.Core.CustomField> MixERP.Net.Schemas.Core.Data.CustomField.GetFiltered | ( | long | pageNumber, |
| string | filterName | ||
| ) |
Performs a filtered select statement on table "core.custom_fields" 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.CustomField> MixERP.Net.Schemas.Core.Data.CustomField.GetPagedResult | ( | ) |
Performs a select statement on table "core.custom_fields" 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.CustomField> MixERP.Net.Schemas.Core.Data.CustomField.GetPagedResult | ( | long | pageNumber | ) |
Performs a select statement on table "core.custom_fields" 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.CustomField> MixERP.Net.Schemas.Core.Data.CustomField.GetWhere | ( | long | pageNumber, |
| List< EntityParser.Filter > | filters | ||
| ) |
Performs a filtered select statement on table "core.custom_fields" 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.CustomField.Update | ( | MixERP.Net.Entities.Core.CustomField | customField, |
| long | customFieldId | ||
| ) |
Updates the row of the table "core.custom_fields" with an instance of "CustomField" class against the primary key value.
| customField | The instance of "CustomField" class to update. |
| customFieldId | The value of the column "custom_field_id" 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.CustomField.ObjectName => "custom_fields" |
The schema unqualified name of this table. Returns literal "custom_fields".
| override string MixERP.Net.Schemas.Core.Data.CustomField.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.