你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

MobileServiceCollection<TTable,TCollection>.PrepareDataForCollection 方法

定义

重载

PrepareDataForCollection(IEnumerable<TTable>)

使用提供的选择器函数将来自查询的数据转换为集合数据。

PrepareDataForCollection(TTable)

使用提供的选择器函数将一项转换为集合项。

PrepareDataForCollection(IEnumerable<TTable>)

使用提供的选择器函数将来自查询的数据转换为集合数据。

public virtual System.Collections.Generic.IEnumerable<TCollection> PrepareDataForCollection (System.Collections.Generic.IEnumerable<TTable> items);
abstract member PrepareDataForCollection : seq<'able> -> seq<'Collection>
override this.PrepareDataForCollection : seq<'able> -> seq<'Collection>
Public Overridable Function PrepareDataForCollection (items As IEnumerable(Of TTable)) As IEnumerable(Of TCollection)

参数

items
IEnumerable<TTable>

各个项。

返回

IEnumerable<TCollection>

转换后的数据。

适用于

PrepareDataForCollection(TTable)

使用提供的选择器函数将一项转换为集合项。

public TCollection PrepareDataForCollection (TTable item);
member this.PrepareDataForCollection : 'able -> 'Collection
Public Function PrepareDataForCollection (item As TTable) As TCollection

参数

item
TTable

项。

返回

TCollection

转换后的项。

适用于