|
ITableOperationsGetPrimaryKeyFieldNames Method
|
Get the primary key field names for the table; if escaped is true, also includes any escaping as defined in model.
Namespace: GSF.Data.ModelAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntaxstring[] GetPrimaryKeyFieldNames(
bool escaped = true
)
Function GetPrimaryKeyFieldNames (
Optional escaped As Boolean = true
) As String()
array<String^>^ GetPrimaryKeyFieldNames(
bool escaped = true
)
abstract GetPrimaryKeyFieldNames :
?escaped : bool
(* Defaults:
let _escaped = defaultArg escaped true
*)
-> string[] function GetPrimaryKeyFieldNames(escaped);
View SourceParameters
- escaped Boolean (Optional)
- Flag that determines if field names should include any escaping as defined in the model; defaults to true.
Return Value
StringArray of primary key field names.
Remarks
See Also