EF Core Issue
Posted: Mon 23 Oct 2017 17:08
I have created an efml in a new project and when I try to actually do a query against a table, I get the following error:
Method 'Clone' in type 'Devart.Data.Oracle.Entity.OracleOptionsExtension' from assembly 'Devart.Data.Oracle.Entity.EFCore, Version=9.4.348.0, Culture=neutral, PublicKeyToken=09af7300eec23701' does not have an implementation.
For info, this is the query:
I have installed the nuget packages and I have the latest dotConnect for Oracle installed on my machine. Any help with this would be appreciated.
Method 'Clone' in type 'Devart.Data.Oracle.Entity.OracleOptionsExtension' from assembly 'Devart.Data.Oracle.Entity.EFCore, Version=9.4.348.0, Culture=neutral, PublicKeyToken=09af7300eec23701' does not have an implementation.
For info, this is the query:
Code: Select all
using (var context = new dataModel()) {
return context.TABLENAME.Where(x => x.TableField >= 0).ToList();
}