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