AttributeDictionary BuildComboKey Method CleanCode C# Libraries v1.2.03 API
Builds a combination key (i.e. a key comprised of two or more elements).

Namespace: CleanCode.Data
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public static string BuildComboKey(
	params string[] keyComponents
)

Parameters

keyComponents
Type:  OnlineSystem String 
The key components.

Return Value

A string consisting of combined components joined with a special separator token.
Remarks

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.
See Also