| TableOptions Constructor (Boolean, Boolean, Boolean, Boolean, Boolean, Int32, Int32) |
Initializes a new instance of the TableOptions class.
This constructor will be used when you want to perform queries of the SQLMODE type schemas. It is allowed to specify options for creating queries of SQLMODE type schemas.
Namespace:
LinkarCommon
Assemblies:
LinkarClientCore (in LinkarClientCore.dll) Version: 2.1.0.0
LinkarClientMono (in LinkarClientMono.dll) Version: 2.1.0.0 (2.1.0.0)
LinkarClient (in LinkarClient.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax public TableOptions(
bool onlyVisibles,
bool applyConversion,
bool applyFormat,
bool calculated,
bool pagination = false,
int regPage = 10,
int numPage = 1
)
Public Sub New (
onlyVisibles As Boolean,
applyConversion As Boolean,
applyFormat As Boolean,
calculated As Boolean,
Optional pagination As Boolean = false,
Optional regPage As Integer = 10,
Optional numPage As Integer = 1
)
public:
TableOptions(
bool onlyVisibles,
bool applyConversion,
bool applyFormat,
bool calculated,
bool pagination = false,
int regPage = 10,
int numPage = 1
)
new :
onlyVisibles : bool *
applyConversion : bool *
applyFormat : bool *
calculated : bool *
?pagination : bool *
?regPage : int *
?numPage : int
(* Defaults:
let _pagination = defaultArg pagination false
let _regPage = defaultArg regPage 10
let _numPage = defaultArg numPage 1
*)
-> TableOptions
Parameters
- onlyVisibles
- Type: SystemBoolean
Use only Visible Schemas and Properties. - applyConversion
- Type: SystemBoolean
Execute Conversions: With Dictionaries, conversion defined in the dictionary. With Schemas conversions defined in Linkar Schemas. - applyFormat
- Type: SystemBoolean
Execute Formats. With Dictionaries, formats defined in the dictionary. With Schemas formats defined in Linkar Schemas. - calculated
- Type: SystemBoolean
Return the resulting values from the calculated dictionaries. - pagination (Optional)
- Type: SystemBoolean
Indicates if pagination is being used or not. - regPage (Optional)
- Type: SystemInt32
In case of pagination indicates the number of records by page. It must be bigger than 0. - numPage (Optional)
- Type: SystemInt32
In case of pagination it indicates the page number to obtain. Must be greater than 0.
See Also