Appearance
ServiceNow.Core
SNow.Core.ITable<T>
ITable<T>.Where(Expression<Func<T,bool>>) Method
Set query parameters to the API request using Where clause.
Order matters so x => x.id == id works while x => id == x.id don't.
csharp
SNow.Core.ITable<T> Where(System.Linq.Expressions.Expression<System.Func<T,bool>> expr);
Parameters
expr
System.Linq.Expressions.Expression<System.Func<T,System.Boolean>>