Encapsulates advanced options for making select requests that are strongly typed with a generic parameter.
Namespace: SimolAssembly: Simol (in Simol.dll) Version: 1.0.0.0
Syntax
C# |
---|
public class SelectCommand<T> : SelectCommand |
Visual Basic |
---|
Public Class SelectCommand(Of T) _ Inherits SelectCommand |
Visual C++ |
---|
generic<typename T> public ref class SelectCommand : public SelectCommand |
Type Parameters
- T
- The mapped item type with which this command will be used
Remarks
This class is simply a generic version of SelectCommand. The item mapping
is determined from the generic type parameter rather than from an ItemMapping
or Type passed to the constructor. See the base class for more detailed information
on usage and behavior.