I have been using Entity Developer for NHibernate for a while, just got the latest version (6.0.20), and just upgraded a project to .NET 4.5.2 (started once upon a time as .net 3.5) and NHibernate 4 instead of 3.
When creating a new model, code gets generated with links as
Code: Select all
public virtual ISet<class> nameCode: Select all
public virtual Iesi.Collections.ISet nameChangeing the NHibernate template property "NHibernate V3 compatible" does not change the generated code (although file is rewritten).
Other projects which still are using NHibernate 3 get links as
Code: Select all
public virtual Iesi.Collections.Generic.ISet<class> nameAny ideas as to what has gone wrong with code generation of this old model and how to fix it?
I think I read once regarding an Entity Developer update that templates had to be manually copied to existing projects, but which files from where to where?