Builds a combination key
(i.e. a key comprised of two or more elements).
Namespace: CleanCode.DataAssembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
public static string BuildComboKey(
params string[] keyComponents
)
public static string BuildComboKey(
params string[] keyComponents
)
Public Shared Function BuildComboKey ( _
ParamArray keyComponents As String() _
) As String
Public Shared Function BuildComboKey ( _
ParamArray keyComponents As String() _
) As String
public:
static String^ BuildComboKey(
... array<String^>^ keyComponents
)
public:
static String^ BuildComboKey(
... array<String^>^ keyComponents
)
Return Value
A string consisting of combined components joined
with a special separator token.
If the values of a single column cannot be guaranteed to be unique
(i.e. there is not a simple key field) this method allows you
to use multiple columns as the table key.
This combination key is used internally by StoreRowDicitionary
but this method is exposed for access to the same data
by the caller.