This question is locked. New answers and comments are not allowed.
I am trying to write a parametrized query where all the objects have guids.
I have something like:
I don't know if I should be casting the guid to a string or some such because of how its actually stored in SQLite or something else.
I have something like:
db.Get<Result>(
"select id, count(id) from items where id = @p1"
, Guidvale)
I don't know if I should be casting the guid to a string or some such because of how its actually stored in SQLite or something else.