Hi Support,
Thanks for that, the fields now auto populated based on the catalogs.
Now I faced another problems.
Most of the generated codes are totally different with the previous one.
The only changes i have made is only refreshing the catalogs. That's all
If we look further on below code:
Old one is using the hashing and the new one is using the dictionary.
And the declaration for the new one is using the partial class.
Note:
The old one is using this the following version:
// Code is generated using LLBLGen Pro version: 1.0.2005.1
// Code is generated on: Thursday, September 28, 2006 1:18:07 AM
// Code is generated using templates: C# template set for SqlServer (1.0.2005.1)
// Templates vendor: Solutions Design.
// Templates version: 1.0.2005.1.111705
Currently I map them to sqlserver 2000, which I think the old code also maps to sql server 2000.
Do you have any idea about this?
For ex:
This is the old code:
// __LLBLGENPRO_USER_CODE_REGION_START AdditionalNamespaces
// __LLBLGENPRO_USER_CODE_REGION_END
/// <summary>
/// Entity class which represents the entity 'AffModules'.<br/><br/>
///
/// </summary>
[Serializable]
public class AffModulesEntity : EntityBase2, ISerializable
// __LLBLGENPRO_USER_CODE_REGION_START AdditionalInterfaces
// __LLBLGENPRO_USER_CODE_REGION_END
{
#region Class Member Declarations
private static Hashtable _customProperties;
private static Hashtable _fieldsCustomProperties;
This is the new code:
// __LLBLGENPRO_USER_CODE_REGION_START AdditionalNamespaces
// __LLBLGENPRO_USER_CODE_REGION_END
/// <summary>
/// Entity class which represents the entity 'AffModules'.<br/><br/>
///
/// </summary>
[Serializable]
public partial class AffModulesEntity : CommonEntityBase, ISerializable
// __LLBLGENPRO_USER_CODE_REGION_START AdditionalInterfaces
// __LLBLGENPRO_USER_CODE_REGION_END
{
#region Class Member Declarations
// __LLBLGENPRO_USER_CODE_REGION_START PrivateMembers
// __LLBLGENPRO_USER_CODE_REGION_END
#endregion
#region Statics
private static Dictionary<string, string> _customProperties;
private static Dictionary<string, Dictionary<string, string>> _fieldsCustomProperties;