Merge pull request #346 from vabenil/add_assert_to_find

Add integral field check to find
This commit is contained in:
Adam D. Ruppe 2022-11-12 13:02:57 -05:00 committed by GitHub
commit 25c0da9c45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -409,6 +409,9 @@ static auto find(alias T)(Database db, int id) {
alias TType = T;
}
static assert(is(FType : int),
TType.stringof ~ "." ~ fieldName ~ " should be an Integral field");
string q = "SELECT * FROM " ~ tableNameFor!TType() ~ " WHERE " ~ fieldName ~ " = ?";
foreach(record; db.query(q, id)) {
TType t;