Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "aaron"

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.

Answer

Track this feature request: https://github.com/aspnetzero/aspnet-zero-core/issues/266

CreateOrUpdateUser is an async task. Do:

AsyncHelper.RunSync(() => _userAppService.CreateOrUpdateUser(...));
Answer
  1. Create a class derived from WebAuditInfoProvider (say YourAuditInfoProvider)
  2. Override Fill method. After calling the base.Fill, you can set auditInfo.CustomData.
  3. 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;");
Showing 451 to 460 of 1543 entries