Thank you for replying. After rebooting my PC it is working. I am using the SPA.
-ole
I did use SQL directly in one of my repository classes.
public List<ValueDto> GetAll(int id) {
var ret = Context.Database.SqlQuery<ValueDto>("<SQL returning a result set>").ToList();
return ret;
}
The SQL may be a SELECT or an excec of a stored procedure. Entity Framework will try to map the result set to the ValueDto class. Context is defined in the base Abp.EntityFramework.Repositories
-ole