I\'m trying to get an OData endpoint up and working and I\'m having this error that even Google doesn\'t have much to say about.
I have created an Entity Framework E
To answer the question asked by @NickG et al: in .Net Core, you do something similar:
private static IEdmModel GetEdmModel()
{
var builder = new ODataConventionModelBuilder();
var products = builder.EntitySet("Products");
products.EntityType.Count().Filter().OrderBy().Expand().Select();
return builder.GetEdmModel();
}