ObjectQuery<T>, constructeur (String, ObjectContext)
[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.]
Crée une instance ObjectQuery<T> avec la commande Entity SQL spécifiée comme requête initiale.
Espace de noms : System.Data.Entity.Core.Objects
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
Public Sub New ( _
commandText As String, _
context As ObjectContext _
)
'Utilisation
Dim commandText As String
Dim context As ObjectContext
Dim instance As New ObjectQuery(commandText, _
context)
public ObjectQuery(
string commandText,
ObjectContext context
)
public:
ObjectQuery(
String^ commandText,
ObjectContext^ context
)
new :
commandText:string *
context:ObjectContext -> ObjectQuery
public function ObjectQuery(
commandText : String,
context : ObjectContext
)
Paramètres
- commandText
Type : System.String
Requête Entity SQL.
- context
Type : System.Data.Entity.Core.Objects.ObjectContext
Objet ObjectContext sur lequel exécuter la requête.