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