Guys,
Currently I'm adding custom BL code to the generated code ( .NET 2.0 ) in the section
#region Custom Entity code
// __LLBLGENPRO_USER_CODE_REGION_START CustomEntityCode
// __LLBLGENPRO_USER_CODE_REGION_END
However I thought as .NET 2.0 supported partial classes a better way would be for LLBLGen to generate a partial class which didn't contain any regions and allowed you to add custom code in any area of the definition.
This is the change which Visual Studio .NET went through from 2003 to 2005 i.e. when the designer code region were moved from the main class file in an "Initialize Component dont touch" type region and into another partical class called perhaps Form1.Designer.cs.
Is it possible to configure LLBLGen 2.0 in this way for .NET 2.0 classes or modify the templates accordingly. It seems strange that if you specify .NET 2.0 for code generation that this kind of structure isn't automatically generated for you and you have to add code to custom regions.
Thoughts please?