Where to create MyAuditLogContributor? In Web, or Application, or EntityFrameworkCore ?
You can create it in your web or application project.
Please note that i am using Oracle. builder.Entity<AuditLogAction>(b => { b.Property(x => x.Parameters).HasMaxLength(int.MaxValue); });
Then can you set the .HasColumnType("varchar2(max)")
and remove the .HasMaxLength(int.MaxValue)
statement as below:
builder.Entity(b =>
{
b.Property(x => x.Parameters).HasColumnType("varchar2(max)");
});
What about this one help me please
Access to XMLHttpRequest at 'https://localhost:44362/.well-known/openid-configuration' from origin 'https://localhost:44308' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Hi, as the error message said this is an error related to CORS policy and a different topic from this question, so please create a new question for your problem.
You can use the Table Splitting approach. Please see the Table Splitting documentation of EF Core and then just update your entity configuration as below:
builder.Entity<AppUser>(b =>
{
b.ToTable(AbpIdentityDbProperties.DbTablePrefix + "Users"); //Sharing the same table "AbpUsers" with the IdentityUser
b.ConfigureByConvention();
b.ConfigureAbpUser();
b.HasOne<IdentityUser>().WithOne().HasForeignKey<AppUser>(x => x.Id); //add this line
});
Same with https://github.com/abpframework/abp/issues/8950#issuecomment-1001880208
It's nice to hear that :)
Sure, you can send your project to engin.veske@volosoft.com.
are u checking?
I've checked and write you an email back, can you check and apply it?
Hi, I'll try to reproduce the problem and write you back asap.
Sure, you can send your project to engin.veske@volosoft.com.
Does your .HttpApi.Host and .IdentityServer projects are running? It seems it couldn't get a response from localhost:44358 and localhost:63079
Hi, please see this answer.
Hi, I've just created an app-pro template with Blazor UI but I could not reproduce the problem. The problem might be related to you could have closed the terminal before the abp install-libs
command was completed. So, please delete the yarn.lock file (under the .HttpApi.Host project) and re-run the abp install-libs
command.