Partager via


EntitySet.Create, méthode

[Cette page concerne Entity Framework version 6. La dernière version est disponible sous le nom de package 'Entity Framework' NuGet. Pour plus d'informations sur Entity Framework, consultez msdn.com/data/ef.]

Méthode de fabrique pour créer l'objet EntitySet.

Espace de noms :  System.Data.Entity.Core.Metadata.Edm
Assembly :  EntityFramework (dans EntityFramework.dll)

Syntaxe

'Déclaration
Public Shared Function Create ( _
    name As String, _
    schema As String, _
    table As String, _
    definingQuery As String, _
    entityType As EntityType, _
    metadataProperties As IEnumerable(Of MetadataProperty) _
) As EntitySet
'Utilisation
Dim name As String 
Dim schema As String 
Dim table As String 
Dim definingQuery As String 
Dim entityType As EntityType 
Dim metadataProperties As IEnumerable(Of MetadataProperty)
Dim returnValue As EntitySet 

returnValue = EntitySet.Create(name, schema, _
    table, definingQuery, entityType, _
    metadataProperties)
public static EntitySet Create(
    string name,
    string schema,
    string table,
    string definingQuery,
    EntityType entityType,
    IEnumerable<MetadataProperty> metadataProperties
)
public:
static EntitySet^ Create(
    String^ name, 
    String^ schema, 
    String^ table, 
    String^ definingQuery, 
    EntityType^ entityType, 
    IEnumerable<MetadataProperty^>^ metadataProperties
)
static member Create : 
        name:string * 
        schema:string * 
        table:string * 
        definingQuery:string * 
        entityType:EntityType * 
        metadataProperties:IEnumerable<MetadataProperty> -> EntitySet
public static function Create(
    name : String, 
    schema : String, 
    table : String, 
    definingQuery : String, 
    entityType : EntityType, 
    metadataProperties : IEnumerable<MetadataProperty>
) : EntitySet

Paramètres

  • definingQuery
    Type : System.String
    Requête spécifique au fournisseur qui doit être utilisée pour récupérer des données pour cet objet EntitySet. Peut être Null.

Valeur de retour

Type : System.Data.Entity.Core.Metadata.Edm.EntitySet
Objet EntitySet.

Exceptions

Exception Condition
ArgumentException

Exception levée si l'argument name a la valeur Null ou est une chaine vide.

Notes

Le nouvel objet EntitySet créé est en lecture seule.

Voir aussi

Référence

EntitySet Classe

Espace de noms System.Data.Entity.Core.Metadata.Edm