ObjectQuery.GetResultType Metodo

Definizione

Restituisce le informazioni sul tipo di risultato della query.

public:
 System::Data::Metadata::Edm::TypeUsage ^ GetResultType();
public System.Data.Metadata.Edm.TypeUsage GetResultType ();
member this.GetResultType : unit -> System.Data.Metadata.Edm.TypeUsage
Public Function GetResultType () As TypeUsage

Restituisce

Valore di TypeUsage contenente le informazioni sul tipo di risultato della query.

Esempio

In questo esempio viene creato un ObjectQuery<T> oggetto di tipo DbDataRecord e viene GetResultType utilizzato per determinare se il tipo restituito rappresenta una riga.

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);
    }
}

Si applica a

Vedi anche