hi
https://zoom.us/j/96527185686?pwd=YjEwZy9wMkdxM0JveDNmcmJoeWZIQT09
hi
You can define the Razor or Scriban template. Then it will show in this list.
https://docs.abp.io/en/abp/latest/Text-Templating-Razor https://docs.abp.io/en/abp/latest/Text-Templating-Scriban
hi
If you don't want to reference your module through the project, you can publish your module to nuget or myget(one package per module). Then install these packages in your application.
However, it is very convenient to use project references during development.
hi
Can you share a minimum project to reprooduce the problem?
Blazor.Server.Host is the UI project just like the Web. You can use it to test your module.
hi
Please remove Blazor.Server.Host project from your solution.
Here is document of module solution. https://docs.abp.io/en/commercial/latest/startup-templates/module/solution-structure
I am not able to run the IdentityServer
What's the error?
hi sergei
Can you share your full steps?
hi
Steps to reproduce the issue
hi
Please try to update the database in your projects.
host\Aeonic.Module.Reviews.IdentityServer>dotnet ef database update
host\Aeonic.Module.Reviews.HttpApi.Host>dotnet ef database update
An error occurred using the connection to database 'Reviews_Main' on server 'localhost'.
2021-08-05 20:10:12.863 -04:00 [FTL] Application startup exception
Volo.Abp.AbpInitializationException: An error occurred during the initialize Volo.Abp.Modularity.OnApplicationInitializationModuleLifecycleContributor phase of the module Aeonic.Module.Reviews.ReviewsIdentityServerModule, Aeonic.Module.Reviews.IdentityServer, Version=0.1.0.0, Culture=neutral, PublicKeyToken=null: Cannot open database "Reviews_Main" requested by the login. The login failed.
Login failed for user 'DESKTOP-GTS0TLK\Jeff-Office-PC'.. See the inner exception for details.
---> Microsoft.Data.SqlClient.SqlException (0x80131904): Cannot open database "Reviews_Main" requested by the login. The login failed.
Login failed for user 'DESKTOP-GTS0TLK\Jeff-Office-PC'.
hi devraj.np
var roleId = Guid.NewGuid(); //Your role id
var role = await _identityRoleManager.GetByIdAsync(roleId);
var usersInRole = _identityUserRepository.GetListByNormalizedRoleNameAsync(role.NormalizedName);
using (_multiTenantFilter.Disable()) //IDataFilter<IMultiTenant>
{
var roleId = Guid.NewGuid();
var role = await _identityRoleManager.GetByIdAsync(roleId);
var usersInRole = _identityUserRepository.GetListByNormalizedRoleNameAsync(role.NormalizedName);
}