Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlQueryObject Concept Reference

Represents an SQL query object, that provides a ToSql() method. More...

#include <SqlStatement.hpp>

Concept definition

template<typename QueryObject>
concept SqlQueryObject = requires(QueryObject const& queryObject) {
{ queryObject.ToSql() } -> std::convertible_to<std::string>;
}
Represents an SQL query object, that provides a ToSql() method.

Detailed Description

Represents an SQL query object, that provides a ToSql() method.

Definition at line 32 of file SqlStatement.hpp.