Partager via


MobileServiceCollection<TTable,TCollection> Constructeurs

Définition

Surcharges

MobileServiceCollection<TTable,TCollection>(IMobileServiceTableQuery<TTable>, Int32)

Initialise une nouvelle instance de la classe IncrementalLoadingMobileServiceCollection{TTable, TCollection}. Ce constructeur doit être utilisé dans les cas où TTable et TCollection sont du même type.

MobileServiceCollection<TTable,TCollection>(IMobileServiceTableQuery<TTable>, Func<IEnumerable<TTable>,IEnumerable<TCollection>>, Int32)

Initialise une nouvelle instance de la classe IncrementalLoadingMobileServiceCollection{TTable, TCollection}.

MobileServiceCollection<TTable,TCollection>(IMobileServiceTableQuery<TTable>, Func<TTable,TCollection>, Int32)

Initialise une nouvelle instance de la classe IncrementalLoadingMobileServiceCollection{TTable, TCollection}.

MobileServiceCollection<TTable,TCollection>(IMobileServiceTableQuery<TTable>, Int32)

Initialise une nouvelle instance de la classe IncrementalLoadingMobileServiceCollection{TTable, TCollection}. Ce constructeur doit être utilisé dans les cas où TTable et TCollection sont du même type.

public MobileServiceCollection (Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<TTable> query, int pageSize = 0);
new Microsoft.WindowsAzure.MobileServices.MobileServiceCollection<'able, 'Collection> : Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<'able> * int -> Microsoft.WindowsAzure.MobileServices.MobileServiceCollection<'able, 'Collection>
Public Sub New (query As IMobileServiceTableQuery(Of TTable), Optional pageSize As Integer = 0)

Paramètres

query
IMobileServiceTableQuery<TTable>

L'interrogation de la source de données fournit les données.

pageSize
Int32

Nombre d'éléments demandés par demande.

S’applique à

MobileServiceCollection<TTable,TCollection>(IMobileServiceTableQuery<TTable>, Func<IEnumerable<TTable>,IEnumerable<TCollection>>, Int32)

Initialise une nouvelle instance de la classe IncrementalLoadingMobileServiceCollection{TTable, TCollection}.

public MobileServiceCollection (Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<TTable> query, Func<System.Collections.Generic.IEnumerable<TTable>,System.Collections.Generic.IEnumerable<TCollection>> selector, int pageSize = 0);
new Microsoft.WindowsAzure.MobileServices.MobileServiceCollection<'able, 'Collection> : Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<'able> * Func<seq<'able>, seq<'Collection>> * int -> Microsoft.WindowsAzure.MobileServices.MobileServiceCollection<'able, 'Collection>
Public Sub New (query As IMobileServiceTableQuery(Of TTable), selector As Func(Of IEnumerable(Of TTable), IEnumerable(Of TCollection)), Optional pageSize As Integer = 0)

Paramètres

query
IMobileServiceTableQuery<TTable>

L'interrogation de la source de données fournit les données.

selector
Func<IEnumerable<TTable>,IEnumerable<TCollection>>

Fonction de sélecteur pour fournir des projections côté client.

pageSize
Int32

Nombre d'éléments demandés par demande.

S’applique à

MobileServiceCollection<TTable,TCollection>(IMobileServiceTableQuery<TTable>, Func<TTable,TCollection>, Int32)

Initialise une nouvelle instance de la classe IncrementalLoadingMobileServiceCollection{TTable, TCollection}.

public MobileServiceCollection (Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<TTable> query, Func<TTable,TCollection> selector, int pageSize = 0);
new Microsoft.WindowsAzure.MobileServices.MobileServiceCollection<'able, 'Collection> : Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery<'able> * Func<'able, 'Collection> * int -> Microsoft.WindowsAzure.MobileServices.MobileServiceCollection<'able, 'Collection>
Public Sub New (query As IMobileServiceTableQuery(Of TTable), selector As Func(Of TTable, TCollection), Optional pageSize As Integer = 0)

Paramètres

query
IMobileServiceTableQuery<TTable>

L'interrogation de la source de données fournit les données.

selector
Func<TTable,TCollection>

Fonction de sélecteur pour fournir des projections côté client.

pageSize
Int32

Nombre d'éléments demandés par demande.

S’applique à