ObjectQuery<T>.SelectValue<TResultType>, 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.]
Limite les résultats de la requête uniquement à la propriété spécifiée dans la projection.
Espace de noms : System.Data.Entity.Core.Objects
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
Public Function SelectValue(Of TResultType) ( _
projection As String, _
ParamArray parameters As ObjectParameter() _
) As ObjectQuery(Of TResultType)
'Utilisation
Dim instance As ObjectQuery
Dim projection As String
Dim parameters As ObjectParameter()
Dim returnValue As ObjectQuery(Of TResultType)
returnValue = instance.SelectValue(projection, _
parameters)
public ObjectQuery<TResultType> SelectValue<TResultType>(
string projection,
params ObjectParameter[] parameters
)
public:
generic<typename TResultType>
ObjectQuery<TResultType>^ SelectValue(
String^ projection,
... array<ObjectParameter^>^ parameters
)
member SelectValue :
projection:string *
parameters:ObjectParameter[] -> ObjectQuery<'TResultType>
JScript does not support generic types and methods.
Paramètres de type
- TResultType
Type de ObjectQuery<T> retourné par la méthode SelectValue<TResultType>(String, ObjectParameter[]).
Paramètres
- projection
Type : System.String
Liste de projections.
- parameters
Type : System.Data.Entity.Core.Objects.ObjectParameter[]
Jeu facultatif de paramètres de requête qui doivent être dans l'étendue lors de l'analyse.
Valeur de retour
Type : System.Data.Entity.Core.Objects.ObjectQuery<TResultType>
Nouvelle instance ObjectQuery<T> d'un type compatible avec la projection spécifique.Le ObjectQuery<T> retourné est équivalent à l'instance d'origine avec application de SELECT VALUE.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | La projection a la valeur Null ou les paramètres ont la valeur Null. |
ArgumentException | Le projection est une chaîne vide. |