Show / Hide Table of Contents

Class IQueryableExtensions

IQueryable<T> extension methods.

Inheritance
object
IQueryableExtensions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Microsoft.GNS.Roster.DataAccess
Assembly: Microsoft.GNS.Roster.DataAccess.dll
Syntax
public static class IQueryableExtensions

Methods

View Source

ExecuteQueryAsync<T>(IQueryable<T>)

Executes a query and returns it as an IAsyncEnumerable<T>

Declaration
public static IAsyncEnumerable<T> ExecuteQueryAsync<T>(this IQueryable<T> query)
Parameters
Type Name Description
IQueryable<T> query

The query object.

Returns
Type Description
IAsyncEnumerable<T>

An IAsyncEnumerable<T>.

Type Parameters
Name Description
T

The type returned in the async enumerable.

  • View Source
In this article
Back to top Generated by DocFX