Hello,
I am evaluating LLBLGen for the generation of EF Core 8 code for Postgresql access.
I use designer 5.11.3. I added a typeimport file named NorthwindPg.typeimports
, while the project file is called NorthwindPg.llblgenproj
:
<typeImports>
<typeImport typeName="NorthwindPg.EnumTypes.*" assemblyFile="Code\Model\bin\Debug\net8.0\NorthwindPg.Model.dll"/>
</typeImports>
The file containing the enums is the following:
namespace NorthwindPg.EnumTypes
{
public enum enum_test
{
Test0,
Test2,
Test3
}
}
The code is generated by LLBLGen. When I re-scan the folder I get the following error:
TypeConverterStore::Error importing types from assembly file 'C:\Dev\MIP\Sandbox\Postgresql-in-docker\DAL\Code\Model\bin\Debug\net8.0\NorthwindPg.Model.dll': One or more dependencies couldn't be resolved. Types to import in this assembly will be unavailable.
I also tried to specify the name of the enum I need to import instead of the wild card. In this case I get no error, however, in Tools\View Loaded External Types
I cannot find the type.
I would really appreciate your help solving this issue!
Best