Hello, thanks for the lib, I am trying to use it but face a blocking issue.
Error `System.Exception: Failed to compile: Metadata file 'EntityFramework.dll' could not be found
↵ at DynamicOData.QueryFactory.Compile(Table table)`
Line that throw the exception
|
parameters.ReferencedAssemblies.Add("EntityFramework.dll"); |
Possible solution
By default, EntityFramework.dll is not in the GAC, so this line should be
parameters.ReferencedAssemblies.Add(Directory.GetCurrentDirectory() + "\\EntityFramework.dll");