Thank you for replying. After rebooting my PC it is working. I am using the SPA.
-ole
I only get the left menu when the user is a member of the Admin group.
abp.nav.menus.MainMenu.items is an empty array.
Any suggestions?
thanks 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
Hi,
I need to use the generated WebApi from a mobile app and would like token based authentication. How should I implement this?
Regards Ole E Oren
Hi,
I will try to publish to an Azure Web Site with an Azure hosted SQL database. Is there anything I should do before attempting this?
I would like to have a local development environment and then deploy to Azure. Can I get the multi tenant feature with tenant name as a prefix working on Azure?
Regards Ole E Oren