| LkItem(String, String, String, String, String, String, String) Constructor |
Linkar Framework for .NET and Core
Initializes a new instance of the LkItem class.
Namespace: Linkar.LkDataAssembly: Linkar.LkData (in Linkar.LkData.dll) Version: 2.3.1
Syntax public LkItem(
string recordId,
string record = "",
string calculateds = "",
string originalRecord = "",
string[] lstDictsId = null,
string[] lstDicts = null,
string[] lstDictsCalculated = null
)
Public Sub New (
recordId As String,
Optional record As String = "",
Optional calculateds As String = "",
Optional originalRecord As String = "",
Optional lstDictsId As String() = Nothing,
Optional lstDicts As String() = Nothing,
Optional lstDictsCalculated As String() = Nothing
)
public:
LkItem(
String^ recordId,
String^ record = L"",
String^ calculateds = L"",
String^ originalRecord = L"",
array<String^>^ lstDictsId = nullptr,
array<String^>^ lstDicts = nullptr,
array<String^>^ lstDictsCalculated = nullptr
)
new :
recordId : string *
?record : string *
?calculateds : string *
?originalRecord : string *
?lstDictsId : string[] *
?lstDicts : string[] *
?lstDictsCalculated : string[]
(* Defaults:
let _record = defaultArg record ""
let _calculateds = defaultArg calculateds ""
let _originalRecord = defaultArg originalRecord ""
let _lstDictsId = defaultArg lstDictsId null
let _lstDicts = defaultArg lstDicts null
let _lstDictsCalculated = defaultArg lstDictsCalculated null
*)
-> LkItem
Parameters
- recordId String
- The ID of the record.
- record String (Optional)
- The content of a record from database.
- calculateds String (Optional)
- The content of the calculated fields of the records.
- originalRecord String (Optional)
- A copy of the original record to be used in operations where the optimistic lock option is enabled.
- lstDictsId String (Optional)
- Optionally, array with the dictionary names for record Ids.
- lstDicts String (Optional)
- Optionally, array with the dictionary names for record fields.
- lstDictsCalculated String (Optional)
- Optionally, array with the dictionary names for calculated fields of the record.
See Also