Class DataServiceQueryExtensions
Extension methods for
Inheritance
System.Object
DataServiceQueryExtensions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: CrashCABN.PullIngestion.Watson
Assembly: CrashCABN.PullIngestion.Watson.dll
Syntax
public static class DataServiceQueryExtensions
Methods
View SourceSelectFields<T>(DataServiceQuery<T>, String[])
Adds a query option to select the specified fields.
Declaration
public static DataServiceQuery<T> SelectFields<T>(this DataServiceQuery<T> self, params string[] fields)
Parameters
Type | Name | Description |
---|---|---|
DataServiceQuery<T> | self | The query being extended. |
System.String[] | fields | The fields to return. |
Returns
Type | Description |
---|---|
DataServiceQuery<T> | A new query. |
Type Parameters
Name | Description |
---|---|
T | The query result type. |