https://docs.aspnetzero.com/documents/zero/latest/Development-Guide-Angular#linked-accounts
What do you mean?
Duplicate of #6285
<text name="Enum_TiposElementos_1">Mayores</text>
Those are localization keys, so add localization texts.
Yes, read the section on Entity Changes.
Track this feature request: https://github.com/aspnetzero/aspnet-zero-core/issues/266
CreateOrUpdateUser
is an async
task. Do:
AsyncHelper.RunSync(() => _userAppService.CreateOrUpdateUser(...));
- Create a class derived from WebAuditInfoProvider (say YourAuditInfoProvider)
- Override Fill method. After calling the base.Fill, you can set auditInfo.CustomData.
- Replace your own provider as described here: http://www.aspnetboilerplate.com/Pages/Documents/Startup-Configuration#replacing-built-in-services
Configuration.ReplaceService<IAuditInfoProvider, YourAuditInfoProvider>(DependencyLifeStyle.Transient);
https://github.com/aspnetboilerplate/aspnetboilerplate/issues/1123
Try:
GetDbContext().Database.ExecuteSqlCommand(
"SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;");