Gets or sets the parameter name.
Namespace: SimolAssembly: Simol (in Simol.dll) Version: 1.0.0.0
Syntax
| C# |
|---|
public string Name { get; private set; } |
| Visual Basic |
|---|
Public Property Name As String Get Private Set |
| Visual C++ |
|---|
public: property String^ Name { String^ get (); private: void set (String^ value); } |
Field Value
The name.
Remarks
The parameter name must match exactly one parameter
defined in your select query. For example, the select query
select * from Person where Zipcode = @Zipcode
would require one parameter named "Zipcode".