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