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