Skip to content

ServiceNow.Core

SNow.Core.Table<T>

Table<T>.Select(Expression<Func<T,object>>[]) Method

List of properties to return, impacts the size of the response

csharp
public SNow.Core.ITable<T> Select(params System.Linq.Expressions.Expression<System.Func<T,object>>[] expressions);

Parameters

expressions System.Linq.Expressions.Expression<System.Func<T,System.Object>>[]
you can pass more than one parameter ex.: x=> x.Name, x=> x.Age

Returns

SNow.Core.ITable<T>

Implements Select(Expression >[])

Released under the MIT License.