Gatmando
Gatmando

Reputation: 2269

ASYNC and Entity Framework

I've just been reading up on the upcoming changes to c# and VB.Net using the new ASYNC and AWAIT keywords for asynchronous coding. Has anyone heard anything about whether or not this is going to be usable for async db calls via EF?

Thanks

Upvotes: 11

Views: 3166

Answers (1)

divega
divega

Reputation: 6476

We are evaluating the possibility of adding async capabilities to EF in the future, using the new Task-based pattern. It is too early to say whether and when this will happen but any information about the scenarios in which you expect to be able to take advantage of this feature will be greatly appreciated.

UPDATE: Async support has been added in EF6.

Upvotes: 7

Related Questions