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