MobileServiceCollection<TTable,TCollection> Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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 à
Azure SDK for .NET