{CompanyName} FlexyGo

EntityObject..::..GetDataView Method

Gets DataTable based on a Data view name a where sentence, order by and paging .

Namespace:  FLEXYGO.Objects
Assembly:  flxEntity (in flxEntity.dll)

Syntax


public DataTable GetDataView(
	string ViewName,
	int Page,
	int Pagesize,
	string aWhere,
	string OrderBy,
	string CnnString,
	string FindString
)
Public Function GetDataView ( _
	ViewName As String, _
	Page As Integer, _
	Pagesize As Integer, _
	aWhere As String, _
	OrderBy As String, _
	CnnString As String, _
	FindString As String _
) As DataTable

Parameters

ViewName
Type: String
DataView Name.
Page
Type: Int32
optional page number (default first page 0)
Pagesize
Type: Int32
optional page size (default 5000).
aWhere
Type: String
optional additional where sentence.
OrderBy
Type: String
optional order by sentence.
CnnString
Type: String
FindString
Type: String

Return Value

DataTable.