EntityFrameworkQueryableExtensions.ToDictionaryAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ToDictionaryAsync<TSource,TKey,TElement>(IQueryable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, CancellationToken)
Dictionary<TKey,TValue>通过根据指定的键选择器和元素选择器函数异步枚举它,从 IQueryable<T> 中创建 。
public static System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<TKey,TElement>> ToDictionaryAsync<TSource,TKey,TElement> (this System.Linq.IQueryable<TSource> source, Func<TSource,TKey> keySelector, Func<TSource,TElement> elementSelector, System.Threading.CancellationToken cancellationToken = default);
static member ToDictionaryAsync : System.Linq.IQueryable<'Source> * Func<'Source, 'Key> * Func<'Source, 'Element> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<'Key, 'Element>>
<Extension()>
Public Function ToDictionaryAsync(Of TSource, TKey, TElement) (source As IQueryable(Of TSource), keySelector As Func(Of TSource, TKey), elementSelector As Func(Of TSource, TElement), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Dictionary(Of TKey, TElement))
类型参数
- TSource
source
的元素类型。
- TKey
keySelector
返回的键的类型。
- TElement
elementSelector
返回的值的类型。
参数
- source
- IQueryable<TSource>
要从其创建 Dictionary<TKey,TValue> 的 IQueryable<T>。
- keySelector
- Func<TSource,TKey>
用于从每个元素中提取键的函数。
- elementSelector
- Func<TSource,TElement>
用于从每个元素产生结果元素值的转换函数。
- cancellationToken
- CancellationToken
等待 CancellationToken 任务完成时要观察的 。
返回
表示异步操作的任务。
任务结果包含一个 Dictionary<TKey,TValue> ,其中包含从输入序列中选择的类型 TElement
值。
例外
source
、keySelector
或 elementSelector
为 null
。
注解
不支持对同一上下文实例执行多个活动操作。 使用 await
确保在此上下文上调用另一个方法之前已完成任何异步操作。 有关详细信息和示例 ,请参阅避免 DbContext 线程问题 。
有关详细信息和示例 ,请参阅使用 EF Core 查询数据 。
适用于
ToDictionaryAsync<TSource,TKey,TElement>(IQueryable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, IEqualityComparer<TKey>, CancellationToken)
Dictionary<TKey,TValue>IQueryable<T>通过根据指定的键选择器函数、比较器和元素选择器函数异步枚举来创建 。
public static System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<TKey,TElement>> ToDictionaryAsync<TSource,TKey,TElement> (this System.Linq.IQueryable<TSource> source, Func<TSource,TKey> keySelector, Func<TSource,TElement> elementSelector, System.Collections.Generic.IEqualityComparer<TKey> comparer, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<TKey,TElement>> ToDictionaryAsync<TSource,TKey,TElement> (this System.Linq.IQueryable<TSource> source, Func<TSource,TKey> keySelector, Func<TSource,TElement> elementSelector, System.Collections.Generic.IEqualityComparer<TKey>? comparer, System.Threading.CancellationToken cancellationToken = default);
static member ToDictionaryAsync : System.Linq.IQueryable<'Source> * Func<'Source, 'Key> * Func<'Source, 'Element> * System.Collections.Generic.IEqualityComparer<'Key> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<'Key, 'Element>>
<Extension()>
Public Function ToDictionaryAsync(Of TSource, TKey, TElement) (source As IQueryable(Of TSource), keySelector As Func(Of TSource, TKey), elementSelector As Func(Of TSource, TElement), comparer As IEqualityComparer(Of TKey), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Dictionary(Of TKey, TElement))
类型参数
- TSource
source
的元素类型。
- TKey
keySelector
返回的键的类型。
- TElement
elementSelector
返回的值的类型。
参数
- source
- IQueryable<TSource>
要从其创建 Dictionary<TKey,TValue> 的 IQueryable<T>。
- keySelector
- Func<TSource,TKey>
用于从每个元素中提取键的函数。
- elementSelector
- Func<TSource,TElement>
用于从每个元素产生结果元素值的转换函数。
- comparer
- IEqualityComparer<TKey>
用于比较键的 IEqualityComparer<T>。
- cancellationToken
- CancellationToken
等待 CancellationToken 任务完成时要观察的 。
返回
表示异步操作的任务。
任务结果包含一个 Dictionary<TKey,TValue> ,其中包含从输入序列中选择的类型 TElement
值。
例外
source
、keySelector
或 elementSelector
为 null
。
注解
不支持对同一上下文实例执行多个活动操作。 使用 await
确保在此上下文上调用另一个方法之前已完成任何异步操作。 有关详细信息和示例 ,请参阅避免 DbContext 线程问题 。
有关详细信息和示例 ,请参阅使用 EF Core 查询数据 。
适用于
ToDictionaryAsync<TSource,TKey>(IQueryable<TSource>, Func<TSource,TKey>, CancellationToken)
Dictionary<TKey,TValue>通过根据指定的键选择器函数异步枚举它,从 IQueryable<T> 中创建 。
public static System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<TKey,TSource>> ToDictionaryAsync<TSource,TKey> (this System.Linq.IQueryable<TSource> source, Func<TSource,TKey> keySelector, System.Threading.CancellationToken cancellationToken = default);
static member ToDictionaryAsync : System.Linq.IQueryable<'Source> * Func<'Source, 'Key> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<'Key, 'Source>>
<Extension()>
Public Function ToDictionaryAsync(Of TSource, TKey) (source As IQueryable(Of TSource), keySelector As Func(Of TSource, TKey), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Dictionary(Of TKey, TSource))
类型参数
- TSource
source
的元素类型。
- TKey
keySelector
返回的键的类型。
参数
- source
- IQueryable<TSource>
要从其创建 Dictionary<TKey,TValue> 的 IQueryable<T>。
- keySelector
- Func<TSource,TKey>
用于从每个元素中提取键的函数。
- cancellationToken
- CancellationToken
等待 CancellationToken 任务完成时要观察的 。
返回
表示异步操作的任务。 任务结果包含包含 Dictionary<TKey,TValue> 所选键和值的 。
例外
source
或 keySelector
为 null
。
注解
不支持对同一上下文实例执行多个活动操作。 使用 await
确保在此上下文上调用另一个方法之前已完成任何异步操作。 有关详细信息和示例 ,请参阅避免 DbContext 线程问题 。
有关详细信息和示例 ,请参阅使用 EF Core 查询数据 。
适用于
ToDictionaryAsync<TSource,TKey>(IQueryable<TSource>, Func<TSource,TKey>, IEqualityComparer<TKey>, CancellationToken)
Dictionary<TKey,TValue>IQueryable<T>通过根据指定的键选择器函数和比较器异步枚举来创建 。
public static System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<TKey,TSource>> ToDictionaryAsync<TSource,TKey> (this System.Linq.IQueryable<TSource> source, Func<TSource,TKey> keySelector, System.Collections.Generic.IEqualityComparer<TKey> comparer, System.Threading.CancellationToken cancellationToken = default);
static member ToDictionaryAsync : System.Linq.IQueryable<'Source> * Func<'Source, 'Key> * System.Collections.Generic.IEqualityComparer<'Key> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<'Key, 'Source>>
<Extension()>
Public Function ToDictionaryAsync(Of TSource, TKey) (source As IQueryable(Of TSource), keySelector As Func(Of TSource, TKey), comparer As IEqualityComparer(Of TKey), Optional cancellationToken As CancellationToken = Nothing) As Task(Of Dictionary(Of TKey, TSource))
类型参数
- TSource
source
的元素类型。
- TKey
keySelector
返回的键的类型。
参数
- source
- IQueryable<TSource>
要从其创建 Dictionary<TKey,TValue> 的 IQueryable<T>。
- keySelector
- Func<TSource,TKey>
用于从每个元素中提取键的函数。
- comparer
- IEqualityComparer<TKey>
用于比较键的 IEqualityComparer<T>。
- cancellationToken
- CancellationToken
等待 CancellationToken 任务完成时要观察的 。
返回
表示异步操作的任务。 任务结果包含包含 Dictionary<TKey,TValue> 所选键和值的 。
例外
source
或 keySelector
为 null
。
注解
不支持对同一上下文实例执行多个活动操作。 使用 await
确保在此上下文上调用另一个方法之前已完成任何异步操作。 有关详细信息和示例 ,请参阅避免 DbContext 线程问题 。
有关详细信息和示例 ,请参阅使用 EF Core 查询数据 。