ObjectQuery<T>.SelectValue<TResultType> 方法

定义

将查询结果限制为仅包含投影中指定的属性。

public System.Data.Entity.Core.Objects.ObjectQuery<TResultType> SelectValue<TResultType> (string projection, params System.Data.Entity.Core.Objects.ObjectParameter[] parameters);
member this.SelectValue : string * System.Data.Entity.Core.Objects.ObjectParameter[] -> System.Data.Entity.Core.Objects.ObjectQuery<'ResultType>
Public Function SelectValue(Of TResultType) (projection As String, ParamArray parameters As ObjectParameter()) As ObjectQuery(Of TResultType)

类型参数

TResultType

ObjectQuery<T> 方法返回的 SelectValue<TResultType>(String, ObjectParameter[]) 的类型。

参数

projection
String

投影列表。

parameters
ObjectParameter[]

在分析时应在作用域内的一组可选查询参数。

返回

ObjectQuery<TResultType>

一个类型与特定投影兼容的新 ObjectQuery<T>。 返回的 ObjectQuery<T> 等效于应用了 SELECT VALUE 的原始实例。

例外

投影为 null 或参数为 null。

projection 为空字符串。

适用于