Base solution for your next web application

Activities of "direccionti"

Hi @ismcagdas I could test on base aspnetzero 11.0.0.0 and it works correctly. I'll check my code merged. When I know about the problem I'll tell you.Thanks!

Prerequisites

  • What is your product version? 11.0.0.
  • What is your product type (Angular or MVC)? Angular
  • What is product framework type (.net framework or .net core)? .Net 6

If issue related with ABP Framework

  • What is ABP Framework version?

If issue is about UI

  • Which theme are you using?
  • What are the theme settings?

Hello guys! I have a problem. Recently the project was updated. I don't know why my date pickers has this behavior, this doesn't work. This gif was taken from demo-ui-components pages and is the same for the others components. But, the date range picker does work without problem! Can you help me please? Thanks!

Hi, I found the problem. I don't know when service.config.nswag file changed, but i restored the file. Thanks.

Hi! I made a new service and I did another changes in another services but, when Ii wanna update the service-proxy with nswag, it doesn't update.

On the swagger.json (http://localhost:22742/swagger/v1/swagger.json) appears my changes, but it doesn't update. :'(

I deleted the node-modules folder and reinstalled components but it doesn't work either.

Thanks for the help you can give me

Hi!

Thanks!

Hi!

I need to use a single connectionstring for one of the tenants. The rest of tenants would use the default connectionstring.

Example appsettings: "ConnectionStrings": {    "Default": " .......",    "Pruebas": " ......" },

I have a tenant called "Pruebas" and I want him to use a separate database to the other tenants. I have seen the documentation and searched for demos but I can't find a way to solve it.

https://aspnetboilerplate.com/Pages/Documents/Multi-Tenancy

Thanks for you help!

Hi, somebody has an example, recommendations, guides, etc. about how to implement Azure AD B2C in ASPNETZERO? Thanks a lot for your help!

Hi! Solved! the backend should have the subdomain specified too.

Thanks.

I am trying in the app resolve the tenant by subdomain.

In the Web.Host:

"App": { "ServerRootAddress": "https://mybackend.net/", "ClientRootAddress": "https://{TENANCY_NAME}.mydomain.com/", "CorsOrigins": "https://*.mydomain.com, ..... }

In the Angular App: "remoteServiceBaseUrl": "https://mybackend.net/", "appBaseUrl": "https://{TENANCY_NAME}.mydomain.com/", "localeMappings": { "angular": [ {

When I call the application with https://tenant.mydomain.com the tenant name is not resolved and the host login page is loaded. Only tenant names are resolved by cookies.

I tried to make a custom resolver, but it doesn't work either

Question, the backend need a subdomain too?

Thanks!

I got it!

In the dbContext, in "OnModelCreatring" method i added:

modelBuilder.Entity<OrganizationUnit>(b =>
            {
                b.Property<string>("Discriminator")
                    .IsRequired();
                b.ToTable("AbpOrganizationUnits");
                b.HasDiscriminator<string>("Discriminator").HasValue("OrganizationUnit");
            });

            modelBuilder.Entity<OrganizationUnitExtended>(b =>
            {
                b.HasBaseType("Abp.Organizations.OrganizationUnit");
                b.Property<int>("MunicipioId");
                b.Property<int>("TipoUnidadOrganizacionalId");
                b.HasIndex("MunicipioId");
                b.HasIndex("TipoUnidadOrganizacionalId");
                b.ToTable("AbpOrganizationUnits");
                b.HasDiscriminator().HasValue("OrganizationUnitExtended");
            });
Showing 1 to 10 of 11 entries