I am still trying to get the async CTP to work with DevForce.
I want to do something like this:
public async void GetCustomers()
{
var query = Manager.GetQuery<Customer>().Where(x=>x.Name == "Miller");
var result = await query.ExecuteAsync();
Console.WriteLine(result.Result.Count().ToString());
}
It keeps complaining that Customer does not contain a definition for GetAwaiter
Could you give me a working example of getting customers async using the new async CTP
Thanx
Markus Seeli