ProjectionBinder<T> Constructor
Construct a binder with a projection Func
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
Public Sub New ( _
projection As Func(Of SqlDataReader, T) _
)
public ProjectionBinder(
Func<SqlDataReader, T> projection
)
public:
ProjectionBinder(
Func<SqlDataReader^, T>^ projection
)
new :
projection:Func<SqlDataReader, 'T> -> ProjectionBinder
public function ProjectionBinder(
projection : Func<SqlDataReader, T>
)
Parameters
projection
Type: System.Func<SqlDataReader, T>Projection function that returns a T for each row in the given SqlDataReader
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.