Base solution for your next web application

Activities of "dschnitt"

Please disregard my previous message. I've already made it work. I needed to add the host instance subdomain to the list of alternative subdomains in AWS CloudFront.

Hi Admin,

Could you please assist us in configuring ASPNETZERO to use a specific subdomain as the entry point for the host instance? We're hosting the client/angular side on AWS S3 and AWS Cloudfront. While we can access the tenant instances through AWS Cloudfront, the host instance still defaults to the client/angular deployment on IIS. We aim to migrate all client/angular deployments to AWS Cloudfront to manage a single platform instead of both AWS Cloudfront and IIS. Your assistance would be greatly appreciated.

Hi,

I'm not sure if this scenario is fully supported or not but those tables are defined in https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.ZeroCore.EntityFrameworkCore/Zero/EntityFrameworkCore/AbpZeroDbContext.cs and some of them are defined in https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.ZeroCore.EntityFrameworkCore/Zero/EntityFrameworkCore/AbpZeroCommonDbContext.cs

So, you can try removing base class from your DbContext and manually add entities to your DbContext.

Hi ismcagdas,

Thank you for your immediate response. Your advice really helped. However, I can't use the below definition, it says 'TUser' could not be found. I know I should not use the 'TUser', but I'm not sure what to use instead. Same for the TRoles and TTenants

public virtual DbSet<TUser> Users { get; set; }

public virtual DbSet<TRole> Roles { get; set; }

public virtual DbSet<TTenant> Tenants { get; set; }

Please help us again. Thank you.

Good day, ANZ admins,

We're using AspNetZero version 10.2.0 (2021-01-29). We're also using EntityFramework Code-First Migration.

We want to use some of the ANZ functionalities, but some functionalities we won't use. We also want to use two databases. One for the Business Logic Database and one for the Web Interface Database. We've already configured ANZ to use two databases by creating a second db context. The existing first db context is for the Business Logic Database. The second db context that we've created is for the Web Interface Database. There are 42 existing ANZ tables, but we only need 19 of them. We know that we can't delete 23 other tables because behind the scene they're all being used, and we may also use them in the future. So instead of deleting them, we want those 23 tables to be placed in the Web Interface Database. That's our requirement. I only managed to put 3 tables (app_binary_object, app_chat_message, app_friendship) that we don't need in the Web Interface Database because their entities are present in the FirstDbContext.cs. For the other 20 tables, I can't find their definition. I also saw their entities are inside the DLL package.

Here's the list of 19 ANZ tables that we need and are now placed in the Business Logic Database:

  1. abp_audit_log
  2. abp_edition
  3. abp_feature
  4. abp_language
  5. abp_language_text
  6. abp_setting
  7. abp_tenant
  8. abp_tenant_notification
  9. abp_user
  10. abp_user_account
  11. abp_user_claim
  12. abp_user_login
  13. abp_user_login_attempt
  14. abp_user_notification
  15. abp_user_token
  16. app_invoice
  17. app_subscription_payment
  18. app_subscription_payments_extension_datum
  19. app_user_delegation

Here's the list of 20 ANZ tables that we don't need and are currently in the Business Logic Database and want to be placed in the Web Interface Database:

  1. abp_dynamic_entity_property
  2. abp_dynamic_entity_property_value
  3. abp_dynamic_property
  4. abp_dynamic_property_value
  5. abp_entity_change
  6. abp_entity_change_set
  7. abp_entity_property_change
  8. abp_background_job
  9. abp_notification
  10. abp_notification_subscription
  11. abp_organization_unit
  12. abp_organization_unit_role
  13. abp_permission
  14. abp_role
  15. abp_role_claim
  16. abp_user_organization_unit
  17. abp_user_role
  18. abp_webhook_event
  19. abp_webhook_send_attempt
  20. abp_webhook_subscription

Here are the 3 ANZ tables that I managed to put in the Web Interface Database:

  1. app_binary_object
  2. app_chat_message
  3. app_friendship

Please help us with this requirement. Thank you in advance.

Answer

which versions of chrome and firefox?

what about safari?

thanks

Question
  • What is your product version? 10.3
  • What is your product type (Angular or MVC)? Angular
  • What is product framework type (.net framework or .net core)? .net core

What browsers and versions are compatible with ASP.NET ZERO 10.3 Angular?

Thanks

Showing 1 to 6 of 6 entries