Activities of "maliming"

hi Spospisil

Identity authentication will take effect in the next request.

For current request:

using (CurrentPrincipalAccessor.Change(await SignInManager.CreateUserPrincipalAsync(user)))
{
    //Use currentuser here
}

hi

There is should be a IndoDbContextFactory.cs file and Microsoft.EntityFrameworkCore.Tools package in hte EntityFrameworkCore project.

/* This class is needed for EF Core console commands
 * (like Add-Migration and Update-Database commands) */
public class IndoDbContextFactory : IDesignTimeDbContextFactory<IndoDbContext>
{
    public IndoDbContext CreateDbContext(string[] args)
    {
        IndoEfCoreEntityExtensionMappings.Configure();

        var configuration = BuildConfiguration();

        var builder = new DbContextOptionsBuilder<IndoDbContext>()
            .UseSqlServer(configuration.GetConnectionString("Default"));

        return new IndoDbContext(builder.Options);
    }

    private static IConfigurationRoot BuildConfiguration()
    {
        var builder = new ConfigurationBuilder()
            .SetBasePath(Path.Combine(Directory.GetCurrentDirectory(), "../Indo.DbMigrator/"))
            .AddJsonFile("appsettings.json", optional: false);

        return builder.Build();
    }
}
<ItemGroup>
    <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.*">
      <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
      <PrivateAssets>compile; contentFiles; build; buildMultitargeting; buildTransitive; analyzers; native</PrivateAssets>
    </PackageReference>
</ItemGroup>

hi

Sorry for delay, I think it will be available in 3 day.

hi

Share the steps will be simpler.

HI

Can you share the steps to reproduce the problem with a new project?

hi

When I'm trying to add a new migration using the command line dotnet ef migrations add TicketStatuses

Are you exec the dotnet ef in EF Core folder?

hi

Tiered (MVC): yes

You need to run the IdentityServer, Api.Host and Web project.

hi

  • ABP Framework version: vX.X.X
  • UI type: Angular / MVC / Blazor
  • DB provider: EF Core / MongoDB
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

hi

Because the audit module may be an independent service. Or use a different database or even MongoDb, We don't recommend creating foreign key relationships for them.

hi

Naming product is not currently supported. You can create a new microserivce.

https://docs.abp.io/en/commercial/latest/startup-templates/microservice/add-microservice

Showing 10891 to 10900 of 12093 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.3.0-preview. Updated on March 02, 2026, 08:48
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.