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
- name
Type : System.String
Nom de l'objet EntitySet.
- schema
Type : System.String
Schéma db. Peut être Null.
- table
Type : System.String
Table db. Peut être Null.
- 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.
- entityType
Type : System.Data.Entity.Core.Metadata.Edm.EntityType
Type d'entité des entités que ce type de jeu d'entités contient.
- metadataProperties
Type : System.Collections.Generic.IEnumerable<MetadataProperty>
Propriétés de métadonnées qui sont ajoutées au nouvel objet EntitySet créé. 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.