ObjectQuery::IQueryable::Expression Property
.NET Framework (current version)
Gets the expression describing this query.
Assembly: System.Data.Entity (in System.Data.Entity.dll)
private: property Expression^ Expression { virtual Expression^ get() sealed = IQueryable::Expression::get; }
Property Value
Type: System.Linq.Expressions::Expression^The LINQ Expression that describes this query.
Implements
IQueryable::ExpressionFor queries built by using LINQ builder patterns, this returns a full LINQ expression tree; otherwise, it returns a constant expression that wraps this query. Note that the default expression is not cached. This allows the framework to differentiate between LINQ and Entity SQL queries.
This member is an explicit interface member implementation. It can be used only when the ObjectQuery<T> instance is cast to an IListSource interface.
.NET Framework
Available since 3.5
Available since 3.5
Show: