ISqlParameter Interface
.NET Standard 2.x
Represents the SQL parameter object which is used to build SQL with the SqlBuilder
object.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Syntax
public interface ISqlParameter
Property
Name | Returns Type | Description |
---|---|---|
DataType | Type | Gets the data type of the value used in the SQL parameter. |
Name | string | Gets the name of the SQL parameter. |
Direction | System.Data.ParameterDirection | Gets a value that indicates whether the parameter is input-only, output-only, bidirectional or a stored procedure return value parameter. |
Remarks
The SQL parameter object can be created by calling the SqlBuilder.Parameter method.