Hi,
I think you should not use localization sources. You can take a look at this issue to get an idea about how to make content localization <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/297">https://github.com/aspnetboilerplate/as ... issues/297</a>.
There is a sample experimental project <a class="postlink" href="https://github.com/hikalkan/experimental-multi-lingual-entities">https://github.com/hikalkan/experimenta ... l-entities</a>.
Hi,
You dont have to do anyting for integers. It's auto increment by default. Do you have any problem about it ?
Hi,
You are right, I misunderstand the situation.
The problem is UsersController is not inherited from "[YourProjectName]ControllerBase". If you inherit UsersController controller from "[YourProjectName]ControllerBase" just like LayoutController does, ABP will handle your exception as well.
We will also fix this for the next release,
Thank you for informing us.
Hi,
Entity events are automatically triggered actually. Please see Entity Changes section of documentation <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/EventBus-Domain-Events">http://aspnetboilerplate.com/Pages/Docu ... ain-Events</a>.
You can take a look at UserAccountSynchronizer class for example <a class="postlink" href="https://github.com/aspnetboilerplate/module-zero/blob/1c77cfe842f81170f4ce7e10036c1e8784331dc6/src/Abp.Zero/Authorization/Users/UserAccountSynchronizer.cs">https://github.com/aspnetboilerplate/mo ... ronizer.cs</a>
Hi,
Do you want to subscribe users to some notifications on your seed method ? If so, you should use UserNotificationInfo which is already included in the dbContext.
If you just want to create some notifications then you should use NotificationInfo.
Hi,
Maybe you can find a more detailed exception message on eventlog.xml file (in the logFiles folder). It might help us to better understand the problem.
Hi,
It's not configured by default.
You can create a common ErrorController, create an Index action for it and configure it like this,
<customErrors mode="On" defaultRedirect="~/Error">
</customErrors>
In the Index action of ErrorController, return Error.cshml or create a cutom error page of yours.
Hi,
Instead of using method of controller, you should create a new class and call it's method for your recurring job.
Thanks for sharing your solution :)
Hi,
We are planning to do this as well but we haven't think about it so much <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/447">https://github.com/aspnetboilerplate/as ... issues/447</a>.
EventBus might be used here with EntityUpdatingEventData<> generic event data class, but you need to get the origianal version in that case from database.