code this cannot load record, eventhough data exist in the table:
CustList := Manager.Find
.Where((
Linq.Sql<TDateTime, TDateTime>(
'({birthdate} BETWEEN ? AND ?)',
EncodeDateTime(1980, 1, 1, 00, 00, 00, 001),
EncodeDateTime(1980, 12, 31, 23, 59, 59, 999)))
.OrderBy('ID', False)
.List;
help me to fix this.