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