customer.Where.IdCustomer.Value = 19;
customer.Query.Load();
foreach (Customer custom in customer)
{
Console.WriteLine(custom.Description);
}
Also they can continue using do while
do {
Console.WriteLine(custom.Description);
} while (customer.MoveNext());
Change of SourceCode here
Binary here
