Foo
) with the Customizable code option checked and generate the codeIFooRepository.Extended.cs
FooRepository.cs
instead of FooRepository.Extended.cs
.Foo
with the abp suite will erase the implementation of the method and will make the build fail.The implementation of the interface should be at the level of the FooRepository.Extended.cs
not at the level of FooRepostiory.cs
. Should be the same behaviour as the AppServices
.
The implementation of the interface is at the level of the FooRepository.cs
.
Templates can be change in order to fix the generated code. The changed templates are Server.Repository.CustomCode.EfCoreRepository.Extended.txt
and Server.Repository.EfCoreRepository.txt
. the I%%entity-name%%Repository
should be added in the first one and removed in the second one.