Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

string key
Data table row key

Returns

...

Remarks

If key value trimmed if starts with numeric 0 characters if not contain any '.' (dot) character. For example : '00001234' key becomes '1234' but '000.1234' preserved.

...

Code Block
languagejs
var table = $Database.Get({
    Parameters : {
        TargetSchema : 'HR',
        TargetTable : 'Groups'
    }
});

var list = table.ToDictionary('Name');

var myGroup = list.Get("MyGroup");

Examples

...

languagejs

...

See Also