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