...
Code Block | ||
---|---|---|
| ||
var table = $Database.Get({ Parameters : { TargetSchema : 'HR', TargetTable : 'Persons' } }); var list = table.ToDictionary('Name'); var name_to_check = list.Has('John Doe'); |
...
Code Block | ||
---|---|---|
| ||
var table = $Database.Get({ Parameters : { TargetSchema : 'HR', TargetTable : 'Persons' } }); var list = table.ToDictionary('Name'); var name_to_check = list.Has('John Doe'); |