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