MixERP.Net.Schemas.Localization.Data.LocalizedResource Class Reference

Provides simplified data access features to perform SCRUD operation on the database table "localization.localized_resources". More...

Inheritance diagram for MixERP.Net.Schemas.Localization.Data.LocalizedResource:
PetaPoco.DbAccess PetaPoco.IDBAccess

Public Member Functions

long Count ()
 Performs SQL count on the table "localization.localized_resources". More...
 
IEnumerable< MixERP.Net.Entities.Localization.LocalizedResourceGet ()
 Executes a select query on the table "localization.localized_resources" to return a all instances of the "LocalizedResource" class to export. More...
 
MixERP.Net.Entities.Localization.LocalizedResource Get (long localizedResourceId)
 Executes a select query on the table "localization.localized_resources" with a where filter on the column "localized_resource_id" to return a single instance of the "LocalizedResource" class. More...
 
IEnumerable< MixERP.Net.Entities.Localization.LocalizedResourceGet (long[] localizedResourceIds)
 Executes a select query on the table "localization.localized_resources" with a where filter on the column "localized_resource_id" to return a multiple instances of the "LocalizedResource" class. More...
 
IEnumerable< PetaPoco.CustomFieldGetCustomFields (string resourceId)
 Custom fields are user defined form elements for localization.localized_resources. More...
 
IEnumerable< DisplayFieldGetDisplayFields ()
 Displayfields provide a minimal name/value context for data binding the row collection of localization.localized_resources. More...
 
void AddOrEdit (MixERP.Net.Entities.Localization.LocalizedResource localizedResource, List< EntityParser.CustomField > customFields)
 Inserts or updates the instance of LocalizedResource class on the database table "localization.localized_resources". More...
 
object Add (MixERP.Net.Entities.Localization.LocalizedResource localizedResource)
 Inserts the instance of LocalizedResource class on the database table "localization.localized_resources". More...
 
List< object > BulkImport (List< MixERP.Net.Entities.Localization.LocalizedResource > localizedResources)
 Inserts or updates multiple instances of LocalizedResource class on the database table "localization.localized_resources"; More...
 
void Update (MixERP.Net.Entities.Localization.LocalizedResource localizedResource, long localizedResourceId)
 Updates the row of the table "localization.localized_resources" with an instance of "LocalizedResource" class against the primary key value. More...
 
void Delete (long localizedResourceId)
 Deletes the row of the table "localization.localized_resources" against the primary key value. More...
 
IEnumerable< MixERP.Net.Entities.Localization.LocalizedResourceGetPagedResult ()
 Performs a select statement on table "localization.localized_resources" producing a paged result of 25. More...
 
IEnumerable< MixERP.Net.Entities.Localization.LocalizedResourceGetPagedResult (long pageNumber)
 Performs a select statement on table "localization.localized_resources" producing a paged result of 25. More...
 
long CountWhere (List< EntityParser.Filter > filters)
 Performs a filtered count on table "localization.localized_resources". More...
 
IEnumerable< MixERP.Net.Entities.Localization.LocalizedResourceGetWhere (long pageNumber, List< EntityParser.Filter > filters)
 Performs a filtered select statement on table "localization.localized_resources" producing a paged result of 25. More...
 
long CountFiltered (string filterName)
 Performs a filtered count on table "localization.localized_resources". More...
 
IEnumerable< MixERP.Net.Entities.Localization.LocalizedResourceGetFiltered (long pageNumber, string filterName)
 Performs a filtered select statement on table "localization.localized_resources" 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 => "localization"
 The schema of this table. Returns literal "localization". More...
 
override string ObjectName => "localized_resources"
 The schema unqualified name of this table. Returns literal "localized_resources". 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]
 

Detailed Description

Provides simplified data access features to perform SCRUD operation on the database table "localization.localized_resources".

Member Function Documentation

object MixERP.Net.Schemas.Localization.Data.LocalizedResource.Add ( MixERP.Net.Entities.Localization.LocalizedResource  localizedResource)

Inserts the instance of LocalizedResource class on the database table "localization.localized_resources".

Parameters
localizedResourceThe instance of "LocalizedResource" class to insert.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
void MixERP.Net.Schemas.Localization.Data.LocalizedResource.AddOrEdit ( MixERP.Net.Entities.Localization.LocalizedResource  localizedResource,
List< EntityParser.CustomField customFields 
)

Inserts or updates the instance of LocalizedResource class on the database table "localization.localized_resources".

Parameters
localizedResourceThe instance of "LocalizedResource" class to insert or update.
customFieldsThe custom field collection.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
List<object> MixERP.Net.Schemas.Localization.Data.LocalizedResource.BulkImport ( List< MixERP.Net.Entities.Localization.LocalizedResource localizedResources)

Inserts or updates multiple instances of LocalizedResource class on the database table "localization.localized_resources";

Parameters
localizedResourcesList of "LocalizedResource" class to import.
Returns
long MixERP.Net.Schemas.Localization.Data.LocalizedResource.Count ( )

Performs SQL count on the table "localization.localized_resources".

Returns
Returns the number of rows of the table "localization.localized_resources".
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
long MixERP.Net.Schemas.Localization.Data.LocalizedResource.CountFiltered ( string  filterName)

Performs a filtered count on table "localization.localized_resources".

Parameters
filterNameThe named filter.
Returns
Returns number of rows of "LocalizedResource" class using the filter.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
long MixERP.Net.Schemas.Localization.Data.LocalizedResource.CountWhere ( List< EntityParser.Filter filters)

Performs a filtered count on table "localization.localized_resources".

Parameters
filtersThe list of filter conditions.
Returns
Returns number of rows of "LocalizedResource" class using the filter.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
void MixERP.Net.Schemas.Localization.Data.LocalizedResource.Delete ( long  localizedResourceId)

Deletes the row of the table "localization.localized_resources" against the primary key value.

Parameters
localizedResourceIdThe value of the column "localized_resource_id" which will be deleted.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
IEnumerable<MixERP.Net.Entities.Localization.LocalizedResource> MixERP.Net.Schemas.Localization.Data.LocalizedResource.Get ( )

Executes a select query on the table "localization.localized_resources" to return a all instances of the "LocalizedResource" class to export.

Returns
Returns a non-live, non-mapped instances of "LocalizedResource" class.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
MixERP.Net.Entities.Localization.LocalizedResource MixERP.Net.Schemas.Localization.Data.LocalizedResource.Get ( long  localizedResourceId)

Executes a select query on the table "localization.localized_resources" with a where filter on the column "localized_resource_id" to return a single instance of the "LocalizedResource" class.

Parameters
localizedResourceIdThe column "localized_resource_id" parameter used on where filter.
Returns
Returns a non-live, non-mapped instance of "LocalizedResource" class mapped to the database row.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
IEnumerable<MixERP.Net.Entities.Localization.LocalizedResource> MixERP.Net.Schemas.Localization.Data.LocalizedResource.Get ( long[]  localizedResourceIds)

Executes a select query on the table "localization.localized_resources" with a where filter on the column "localized_resource_id" to return a multiple instances of the "LocalizedResource" class.

Parameters
localizedResourceIdsArray of column "localized_resource_id" parameter used on where filter.
Returns
Returns a non-live, non-mapped collection of "LocalizedResource" class mapped to the database row.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
IEnumerable<PetaPoco.CustomField> MixERP.Net.Schemas.Localization.Data.LocalizedResource.GetCustomFields ( string  resourceId)

Custom fields are user defined form elements for localization.localized_resources.

Returns
Returns an enumerable custom field collection for the table localization.localized_resources
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
IEnumerable<DisplayField> MixERP.Net.Schemas.Localization.Data.LocalizedResource.GetDisplayFields ( )

Displayfields provide a minimal name/value context for data binding the row collection of localization.localized_resources.

Returns
Returns an enumerable name and value collection for the table localization.localized_resources
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
IEnumerable<MixERP.Net.Entities.Localization.LocalizedResource> MixERP.Net.Schemas.Localization.Data.LocalizedResource.GetFiltered ( long  pageNumber,
string  filterName 
)

Performs a filtered select statement on table "localization.localized_resources" producing a paged result of 25.

Parameters
pageNumberEnter the page number to produce the paged result.
filterNameThe named filter.
Returns
Returns collection of "LocalizedResource" class.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
IEnumerable<MixERP.Net.Entities.Localization.LocalizedResource> MixERP.Net.Schemas.Localization.Data.LocalizedResource.GetPagedResult ( )

Performs a select statement on table "localization.localized_resources" producing a paged result of 25.

Returns
Returns the first page of collection of "LocalizedResource" class.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
IEnumerable<MixERP.Net.Entities.Localization.LocalizedResource> MixERP.Net.Schemas.Localization.Data.LocalizedResource.GetPagedResult ( long  pageNumber)

Performs a select statement on table "localization.localized_resources" producing a paged result of 25.

Parameters
pageNumberEnter the page number to produce the paged result.
Returns
Returns collection of "LocalizedResource" class.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
IEnumerable<MixERP.Net.Entities.Localization.LocalizedResource> MixERP.Net.Schemas.Localization.Data.LocalizedResource.GetWhere ( long  pageNumber,
List< EntityParser.Filter filters 
)

Performs a filtered select statement on table "localization.localized_resources" producing a paged result of 25.

Parameters
pageNumberEnter the page number to produce the paged result.
filtersThe list of filter conditions.
Returns
Returns collection of "LocalizedResource" class.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
void MixERP.Net.Schemas.Localization.Data.LocalizedResource.Update ( MixERP.Net.Entities.Localization.LocalizedResource  localizedResource,
long  localizedResourceId 
)

Updates the row of the table "localization.localized_resources" with an instance of "LocalizedResource" class against the primary key value.

Parameters
localizedResourceThe instance of "LocalizedResource" class to update.
localizedResourceIdThe value of the column "localized_resource_id" which will be updated.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.

Member Data Documentation

override string MixERP.Net.Schemas.Localization.Data.LocalizedResource.ObjectName => "localized_resources"

The schema unqualified name of this table. Returns literal "localized_resources".

override string MixERP.Net.Schemas.Localization.Data.LocalizedResource.ObjectNamespace => "localization"

The schema of this table. Returns literal "localization".

Property Documentation

string MixERP.Net.Schemas.Localization.Data.LocalizedResource.Catalog
getset

The name of the database on which queries are being executed to.

long MixERP.Net.Schemas.Localization.Data.LocalizedResource.LoginId
getset

Login id of application user accessing this table.

int MixERP.Net.Schemas.Localization.Data.LocalizedResource.UserId
getset

User id of application user accessing this table.


The documentation for this class was generated from the following file: