Code on how to keep entities in sync using EntitySynchronizer.
For more information, take a look at our blog post here.
Initial code was generated using the abp cli.
abp new Cb.Samples.ProjectManagement -t module -csfabp new Cb.Samples.CustomerManagement -t module -csfabp new Cb.Samples.ModulesEntitySync8 -t app -u blazor-server -dbms SqlServerAs this is just a sample we have decided to only implement for blazor ui and ef core.
We ignored A LOT of best practice for the sake of simplicity.
Use the build-modules.ps1 script. That will build all modules and move the resulting nuget packages into the packages directory (will be created if not exists).
This directory is used as a local nuget source for our app project.
We could have just used references, but that would not emphasize that modules are something that we normally have no access to.