I am trying to get all the records for a child in a date range, but I am getting nothing, making be believe I am constructing the Query wrong.
DateTime t = child.DOB.AddMonths (36);
string sql = "
select * from MeasurementEntity
where ChildFK=? and date<=? order by date";
var q = db.Query<MeasurementEntity> (sql,child.PK, t.ToShortDateString ());
This is C#, but that doesn't matter as to the answer.