Skip to content

ServiceNow.Core

SNow.Core.Table<T>

Table<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
public 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>>

Returns

SNow.Core.ITable<T>

Implements Where(Expression >)

Released under the MIT License.