hi
You can try adding <GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest> to your SaasService.Contract csproj file.
https://abp.io/docs/latest/framework/infrastructure/virtual-file-system#configure-the-abpvirtualfilesystemoptions
Hi
Please share the SaasService.Contract csproj file content.
Our implementation codes may be different. You can share a project to eliminate misunderstandings.
Thanks
liming.ma@volosoft.com
hi @s.beckers
Can you share your test project?
liming.ma@volosoft.com
Thanks.
This should be related to your local docker configuration and is an environmental issue.
Have a good weekend. : )
About 2 : When one of the entity's navigation changes, we think the entity has also changed. This is useful in many scenarios, but it is not useful for OpenIddict Token. Especially your case
hi
Can you try to add MyAbpEfCoreNavigationHelper to your ef core?
using Microsoft.EntityFrameworkCore.ChangeTracking;
using Volo.Abp.DependencyInjection;
using Volo.Abp.EntityFrameworkCore.ChangeTrackers;
using Volo.Abp.OpenIddict.Tokens;
namespace Pusula.Training.HealthCare.EntityFrameworkCore;
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(AbpEfCoreNavigationHelper))]
public class MyAbpEfCoreNavigationHelper : AbpEfCoreNavigationHelper
{
public override void ChangeTracker_Tracked(object? sender, EntityTrackedEventArgs e)
{
if (e.Entry.Entity.GetType() == typeof(OpenIddictToken))
{
return;
}
base.ChangeTracker_Tracked(sender, e);
}
public override void ChangeTracker_StateChanged(object? sender, EntityStateChangedEventArgs e)
{
if (e.Entry.Entity.GetType() == typeof(OpenIddictToken))
{
return;
}
base.ChangeTracker_StateChanged(sender, e);
}
}