Hi,
Is it possible to prevent the generator from creating typed collections? I have a fair amount of code generated with version 1.0.2005.1 for .NET 2.0, and all the collections are simply of type EntityCollection. Version 2.6, which I'm using to modify the code is generating typed EntityCollections.
Example:
Tournament --- 1:n --- Calendar
Old version used to generate a TournamentEntity with a member Calendar of type EntityCollection.
New version generates EntityCollection<Calendar>.
I would like to force it to do it the old way. Is it possible? If you ask me why - just out of pure laziness... I could just use the new typed collections (which I prefer personally), but I would have to change a couple of thousands lines of code... and since it's quite well developed, tested and stable, I don't see any reason for doing so.
Sorry if the answer to my question is already somewhere on the forum, but I tried to search for it, unfortunately with no result