Lightweight 0.20250904.0
Loading...
Searching...
No Matches
Lightweight::SqlQueryObject Concept Reference

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

#include <SqlStatement.hpp>

Concept definition

template<typename QueryObject>
concept Lightweight::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 35 of file SqlStatement.hpp.