MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView Class Reference

Provides simplified data access features to perform SCRUD operation on the database view "transactions.verified_stock_details_view". More...

Inheritance diagram for MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView:
PetaPoco.DbAccess PetaPoco.IDBAccess

Public Member Functions

long Count ()
 Performs SQL count on the view "transactions.verified_stock_details_view". More...
 
IEnumerable< DisplayFieldGetDisplayFields ()
 Displayfields provide a minimal name/value context for data binding the row collection of transactions.verified_stock_details_view. More...
 
IEnumerable< MixERP.Net.Entities.Transactions.VerifiedStockDetailsViewGetPagedResult ()
 Performs a select statement on the view "transactions.verified_stock_details_view" producing a paged result of 25. More...
 
IEnumerable< MixERP.Net.Entities.Transactions.VerifiedStockDetailsViewGetPagedResult (long pageNumber)
 Performs a select statement on the view "transactions.verified_stock_details_view" producing a paged result of 25. More...
 
long CountWhere (List< EntityParser.Filter > filters)
 Performs a filtered count on view "transactions.verified_stock_details_view". More...
 
IEnumerable< MixERP.Net.Entities.Transactions.VerifiedStockDetailsViewGetWhere (long pageNumber, List< EntityParser.Filter > filters)
 Performs a filtered select statement on view "transactions.verified_stock_details_view" producing a paged result of 25. More...
 
long CountFiltered (string filterName)
 Performs a filtered count on view "transactions.verified_stock_details_view". More...
 
IEnumerable< MixERP.Net.Entities.Transactions.VerifiedStockDetailsViewGetFiltered (long pageNumber, string filterName)
 Performs a filtered select statement on view "transactions.verified_stock_details_view" 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 => "transactions"
 The schema of this view. Returns literal "transactions". More...
 
override string ObjectName => "verified_stock_details_view"
 The schema unqualified name of this view. Returns literal "verified_stock_details_view". More...
 

Properties

long LoginId [get, set]
 Login id of application user accessing this view. 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 view "transactions.verified_stock_details_view".

Member Function Documentation

long MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView.Count ( )

Performs SQL count on the view "transactions.verified_stock_details_view".

Returns
Returns the number of rows of the view "transactions.verified_stock_details_view".
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
long MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView.CountFiltered ( string  filterName)

Performs a filtered count on view "transactions.verified_stock_details_view".

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

Performs a filtered count on view "transactions.verified_stock_details_view".

Parameters
filtersThe list of filter conditions.
Returns
Returns number of rows of "VerifiedStockDetailsView" class using the filter.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.
IEnumerable<DisplayField> MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView.GetDisplayFields ( )

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

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

Performs a filtered select statement on view "transactions.verified_stock_details_view" producing a paged result of 25.

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

Performs a select statement on the view "transactions.verified_stock_details_view" producing a paged result of 25.

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

Performs a select statement on the view "transactions.verified_stock_details_view" producing a paged result of 25.

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

Performs a filtered select statement on view "transactions.verified_stock_details_view" 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 "VerifiedStockDetailsView" class.
Exceptions
UnauthorizedExceptionThown when the application user does not have sufficient privilege to perform this action.

Member Data Documentation

override string MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView.ObjectName => "verified_stock_details_view"

The schema unqualified name of this view. Returns literal "verified_stock_details_view".

override string MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView.ObjectNamespace => "transactions"

The schema of this view. Returns literal "transactions".

Property Documentation

string MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView.Catalog
getset

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

long MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView.LoginId
getset

Login id of application user accessing this view.

int MixERP.Net.Schemas.Transactions.Data.VerifiedStockDetailsView.UserId
getset

User id of application user accessing this table.


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