ObjectQuery.GetResultType 方法

定义

返回有关查询的结果类型的信息。

public System.Data.Metadata.Edm.TypeUsage GetResultType ();

返回

一个 TypeUsage 值,它包含有关查询的结果类型的信息。

示例

此示例创建 类型的 DbDataRecordObjectQuery<T>并使用 GetResultType 确定返回的类型是否表示行。

using (AdventureWorksEntities context =
    new AdventureWorksEntities())
{
    string queryString = @"SELECT VALUE product "
    + "FROM AdventureWorksEntities.Products AS product";
    ObjectQuery<DbDataRecord> query =
        new ObjectQuery<DbDataRecord>
            (queryString, context);

    TypeUsage type = query.GetResultType();
    if (type.EdmType is RowType)
    {
        RowType row = type.EdmType as RowType;
        foreach (EdmProperty column in row.Properties)
            Console.WriteLine("{0}", column.Name);
    }
}

适用于

产品 版本
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

另请参阅