Activities of "mel@quadsoftpa.com"

more proper, I think anyone would have to agree. not?

If this is not something you're going to fix, can you give some guidance on where to fix it?

now I have a dilemma a real dilemma, do I really build out my database with this terrible design, or do I scrap the whole thing. entirely unacceptable

modifying the migration file works fine but then the UI blows up

The fact that adding a many to many relationship that does not respect the schema of the parent table is absolutely a bug; opposed to your statement that it is not here

https://support.abp.io/QA/Questions/3381/BUG--CRUD-Generator-when-creating-a-Many-Many-table-does-not-respect-the-schema-name-of-the-app

debating using schemas aside, does this really look like good database design to you?

this is my entity configuration

builder.Entity<CommunityAgent>(b => { b.ToTable(DataManagementDbProperties.DbTablePrefix + "CommunityAgents", DataManagementDbProperties.SchemaCommunity); b.ConfigureByConvention(); b.HasKey(x => new { x.IdentityUserId, x.CommunityId }); b.HasOne<Community>() .WithMany() .IsRequired() .HasForeignKey(x => x.CommunityId) .OnDelete(DeleteBehavior.NoAction); b.HasOne<IdentityUser>() .WithMany() .IsRequired() .HasForeignKey(x => x.IdentityUserId) .OnDelete(DeleteBehavior.NoAction); });

  • ABP Framework version: 6rc3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): mvc

I didn't get any response to my first inquiry, so I'm trying again. I've seen all kinds of questions about this, but I've never seen it asked specifically about a second database. probably the best thing to do is for me to give you my module code. Would you be willing to take a look at this and if so let me know where I can send. Thank you!

Solution is:

public static void ConfigureDataManagement(this ModelBuilder builder) { Check.NotNull(builder, nameof(builder));

 *  * builder.ConfigureIdentityPro();**

    if (builder.IsHostDatabase())

I can provide access to the entire solution if you would like. Thank you

  • **ABP Framework version: 6.0rc2
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no

I need some assistance with the error in the attached message. I burnt two days on it and I can't get it figured out. So I have two databases, one for the basic ABP tables and the second one for module tables. Everything is working fine but now I'm trying to link an entity in the secondary database with dbo.AbpUsers in the primary database. I've seen this question asked before, I've seen kind of half answers and redirections to a sample project or to, but I just cannot get this to work.

dbo.AbpUsers does have an extra column (ExtraProperty), "Title" that may be the root of the problem. I really need very specific help here, a redirection to projects DocumentationSamples or EfCoreMigrationDemo isn't going to help me because I've already pulled my hair out reviewing those projects. thank you very much!

open

Thank you, where do I report bugs? I think I have another one

New version sent without any external dependencies. Should just run and give you the error

Showing 11 to 20 of 51 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11