Struct RawSqlString
A string representing a raw SQL query. This type enables overload resolution between the regular and interpolated FromSql<TEntity>(IDataContext, RawSqlString, params object?[]).
public readonly struct RawSqlString
- Inherited Members
- Extension Methods
Constructors
RawSqlString(string)
Constructs a RawSqlString from a string
public RawSqlString(string s)
Parameters
s
stringThe string.
Properties
Format
The string format.
public string Format { get; }
Property Value
Operators
implicit operator RawSqlString(string)
Implicitly converts a string to a RawSqlString
public static implicit operator RawSqlString(string s)
Parameters
s
stringThe string.