Hi,
The query below works ok in DBlinq-0.18 but in Trunk the datetime in
the where clause stays the same for each attempt.
while (true) {
var customers = from customer in customerTable
where customer.Inserted < DateTime.Now
select customer;
foreach (var customer in customers) {
Console.WriteLine(customer.Id + " " +
customer.Username);
}
Thread.Sleep(3000);
}
Regards,
Greyman.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"DbLinq" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/dblinq?hl=en
-~----------~----~----~----~------~----~------~--~---