Hi,
Ok, please send the link to my email. shiwei.liang@volosoft.com
Hi
I reproduced the problem.
You are right, ABP will automatically generate Id after entity tracking but EF Core checks for duplicate Ids and throws an exception when tracking entities.
I will try to find a way to solve the problem, for now, you need to generate ids for Children.
Hi,
I will check it.
Hi,
I used the steps you provided, there is no problem. I can't reproduce it.
Can you provide a project to me that can reproduce? shiwei.liang@volosoft.com thanks.
Hi,
You can follow this issue: https://github.com/abpframework/abp/issues/11302
Hi,
It looks like just a warn, did you get some other errors? PS: don't forget to add url option.
Hi,
Will this problem occur if you use EF Core directly?
Hi,
ABP can load localized resources from anywhere, you can write localized contributors from resx files。
Example:
public class MyVirtualFileLocalizationResourceContributor : VirtualFileLocalizationResourceContributorBase
{
public MyVirtualFileLocalizationResourceContributor (string virtualPath)
: base(virtualPath)
{
}
protected override bool CanParseFile(IFileInfo file)
{
....
}
protected override ILocalizationDictionary CreateDictionaryFromFileContent(string jsonString)
{
....
}
}
Configure<AbpLocalizationOptions>(options =>
{
options
.Resources
.Add<DefaultResource>("en").Contributors.Add(new MyVirtualFileLocalizationResourceContributor(...));
});