Versions Compared

Key

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

...

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

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

var name_to_check = list.Has('John Doe');

See Also