Appearance
ServiceNow.Core
SNow.Core.ITable<T>
ITable<T>.WithQuery(Expression<Func<T,string>>) Method
The query must have only those operators and, or, like, =, !=, startsWith, endsWith see SN Rest Operators
csharp
SNow.Core.ITable<T> WithQuery(System.Linq.Expressions.Expression<System.Func<T,string>> expression);
Parameters
expression
System.Linq.Expressions.Expression<System.Func<T,System.String>>
String that has access to the table model ex.: x => $"{x.Name} like Something and {x.Age} = 10"