Can you share your Blog and Entry entities ?
Hi,
Because of minified javascripts, it's hard to figure out the error. Can you try it after adding
debug="true"
to your web.config temporarily. It should disable script minification.
Hi,
Can you check your module dependencies ? It seems like app is trying to load AbpWebCommonModule twice.
Can you also share your logs ?
Hi,
Please check this issue <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/774">https://github.com/aspnetboilerplate/as ... issues/774</a>. You can do it with PlugInFolders.
Hi,
Can you share full of your code for UploadFiles if it is possible ?
Hi,
You can try to change state of Entity after finishing your job with it like this,
dbContext.Entry(entity).State = EntityState.Detached;
I dont know your case very well but overriding SaveChanges might be a better choice as Halil said.
Hi,
As Halil pointed out, there is also no need to set Guid identity fields. Because it's generated by abp with sequential guid generator.
It has better performance than regular guid generation.
Hi,
Was your successfull attempt from a local server which is in the same domain with smtp server ? Maybe you need to configure your smtp to send mails from non local Ip addresses. Or maybe you should allow ip address of azure server on your smtp server.
You can create a simple console app with your working code and run it on the azure server to see if it works there as well.
Hi,
We dont have an example but you can do it by defining a custom repository. <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Repositories#custom-repositories">http://aspnetboilerplate.com/Pages/Docu ... positories</a>
You will have access to DbContext in custom repository. Place your stored procedure call just like you do in EF before.
Hi,
Both places use TenantManager's CreateWithAdminUserAsync method. You can do it in that method.