DataObjectCollection T  Constructor (Type, Int32, Int32, Int32,  String , Object, String)Nemiro.Data.dll

Namespace: Nemiro.Data
Assembly: Nemiro.Data (in Nemiro.Data.dll) Version: 2.11.4.126 (2.11.4.126)
Syntax

public DataObjectCollection(
	Type T,
	int recorsPerPage,
	int currentPage,
	int totalRecords,
	string[] includedFields = null,
	Object sorted = null,
	string filtered = null
)

Parameters

T
Type: System Type
The entity type.
recorsPerPage
Type: System Int32
Maximum number of records per page.
currentPage
Type: System Int32
Current page.
totalRecords
Type: System Int32
The total number of entries on request without regard pages.
includedFields (Optional)
Type:  System String 
The list of fields that are included in the query.
sorted (Optional)
Type: System Object
Sorting records.
filtered (Optional)
Type: System String
Filter records.
See Also