Struct SqlStatementParameter
- Namespace
- Quartz.Impl.AdoJobStore
- Assembly
- Quartz.dll
One parameter of a SqlStatement.
public readonly record struct SqlStatementParameter : IEquatable<SqlStatementParameter>
- Implements
- Inherited Members
Constructors
SqlStatementParameter(string, object?, Enum?)
One parameter of a SqlStatement.
public SqlStatementParameter(string Name, object? Value, Enum? DataType = null)
Parameters
NamestringName of the parameter, without the driver's prefix.
ValueobjectDataTypeEnumProvider-specific parameter type, for the columns whose type cannot be inferred from the value — a binary column being the one this store needs.
Properties
DataType
Provider-specific parameter type, for the columns whose type cannot be inferred from the value — a binary column being the one this store needs.
public Enum? DataType { get; init; }
Property Value
Name
Name of the parameter, without the driver's prefix.
public string Name { get; init; }
Property Value
Value
public object? Value { get; init; }