Home
Options

Entity Framework 6 with .NET 4.0

I use EF 6 contexts in dlls compilid with .NET 4.5 quite happily in LinqPad 4. However when attempting to do this with a dll compiled in .NET 4.0, I get the following exception:
Method 'ExecuteAsync' in type 'System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy' from assembly 'EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' does not have an implementation.
I don't have control of the dll and so cannot recompile it. What do I need to do in order to get it working?
Sign In or Register to comment.