It is recommended that version control (e.g. Git) is being setup before working with ANZ so that you can easily revert any changes you made.
Hi @rajamannar, can you provide the ANZ version and framework being used? Also, is there a complete error stacktrace for this exception? e,g from request begin to end.
@dmux, are you using ANZ prior to v8.2?
This was fixed in 8.2 , see https://github.com/aspnetzero/aspnet-zero-core/pull/2955
Hi @dmux, Thanks for reporting it. We will provide a fix soon
Hi,
for angular project , you can use feature-checker-pipe
<div *ngIf="(isHost || ('App.ChatFeature' | checkFeature)) && !chatConnected"></>
for jquery, you can use the following
abp.features.isEnabled('App.ChatFeature.TenantToTenant'),
Hi @kansoftware, it depends on whether both projects are hosted in the same server or hosted separately.
Normally you only need to reference the hostname binded to the application project in your mvc project.
Hi @PMS,
please contact [email protected]
Hi, if you are using sql authentication for the connection string, please make sure the authentication has the correct permission to create database.
you can test it out using sa
authentication for the connection string and it should create a database with the name provided.
Hi @learner29, does the UserManager
you found inherits from AbpUserManager
?
if so, IsGranted
method was implemented in AbpUserManager
by default. you will need to overrides IsGranted method in the UserManager
you can reference the original implementation at https://github.com/aspnetboilerplate/aspnetboilerplate/blob/a613dd920ef6df74cdcdd642052bc2b8a8b129d0/src/Abp.ZeroCore/Authorization/Users/AbpUserManager.cs#L248
Hi, can you share the ANZ version and framework?
also, the error stack trace for new tenant creation?