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

Activities of "ryancyq"

Hi, can you check if both AbpSession.TenantId and TenantId of CurrentUnitOfWork are the same?

TenantId of CurrentUnitOfWork can be obtained by the following:

if (_unitOfWorkManager.Current != null)
{
    var tenantId = _unitOfWorkManager.Current.GetTenantId();
}

Hi @david5, can you provide the network request details as well?

Hi, did you download the metronic v5.5 from https://github.com/aspnetzero/aspnet-zero-core/releases?

In the files under /metronic_v5.5.5/theme/angular/* only /metronic_v5.5.5/theme/angular/js/framework/base/util.js contains some jquery workaround.

Hi @statuscast, I tried both module-zero-core-template and aspnetzero. I was able to reproduce the missing migrations.

However, i do notice that even if the migrations up()/down() does not contain migration changes, the modelsnapshot is updated with

  b.Property<string>("Value")
+         .HasColumnType("nvarchar(max)")
          .HasMaxLength(2000);

Can you try using the following command for creating migrations?

  1. discard .HasColumnType("nvarchar(max)" changes in your snapshot
  2. run dotnet ef migrations add -c MyCompanyDbContext "<migration_name>"

One difference between the two projects should be identity server configuration aspnetzero and not ``module-zero-core-template`

is this angular version? or jquery?

hi, i would suggest a hybrid approach that could save you some time on re-creating the entities and application services.

  1. you can keep web.core and web.host projects (api/endpoint mainly come from application project
  2. create angular project
  3. start GUI migration from web.mvc to angular project
  4. integrate angular project with web.host (which contains all the endpoints)
Answer

you can achieve similar function using www.getpostman.com#creating_run_button

does this happen only to Abp.Configuration.Setting?

what about other ABP tables?

Answer

did you install msbuild tool for your vs2017?

Answer

did you run npm run create-bundles?

see Documents/Getting-Started-Core#run-the-project

Showing 471 to 480 of 573 entries