次の方法で共有


MobileServiceCollection<TTable,TCollection>.PrepareDataForCollection メソッド

定義

オーバーロード

PrepareDataForCollection(IEnumerable<TTable>)

指定されたセレクター関数を使用して、クエリのデータをコレクションのデータに変換します。

PrepareDataForCollection(TTable)

指定されたセレクター関数を使用して、1 つの項目をコレクションの項目に変換します。

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)

指定されたセレクター関数を使用して、1 つの項目をコレクションの項目に変換します。

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

パラメーター

item
TTable

項目。

戻り値

TCollection

変換された項目。

適用対象