Click or drag to resize
QuerySpecExtensionMethodsSelect Method
Overload List
  NameDescription
Public methodStatic memberSelectT, U(DynamicQuery)
Specifies the projection of the query specified, making it a typed dynamic query. It creates the projection from the two type arguments given.
Public methodStatic memberSelectT(DynamicQuery, ExpressionFuncT)
Specifies the projection of the query specified. It clears any existing projection and sets the projection to the one specified. This variant converts the specified projectionFunc into the projector lambda to pass to WithProjector and extracts the elements to place in the SQL query's projection from the projectionFunc. Use this overload to specify a typed resultset.
Public methodStatic memberSelect(DynamicQuery, Object)
Specifies the projection of the query. It clears any existing projection and sets the projection to the one specified.
Public methodStatic memberSelectT(DynamicQuery, Object)
Specifies the projection of the query and the result type. It clears any existing projection and sets the projection to the one specified. It will also mark the query to autogenerate a projector lambda to project the specified projection elements to an instance of T for each row.
Public methodStatic memberSelectT(DynamicQueryT, Object) Obsolete.
Obsolete, don't use. Specifies the projection of the query. It clears any existing projection and sets the projection to the one specified.
Top
See Also