I am looking to see what everyone else is doing to solve the issues I am having around multiple projects.
If I have a pretty simple application, service, etc, I will create a NEW LLBLGen project and only put the entities that project needs. I then generate and am good to go.
(Project A)
Then I have another project, perhaps a bit more complex, I do the same thing again. (Project B)
Then I have another project, perhaps a lot more complex, I do the same thing again. (Project C)
That is all fine. However, what I am running into is I will do some modifications to an Entity through partial classes. So, for example in project C you might code some modifications/enhancements to your entities/collections. Now, how do you get those changes in project A and B?
I could I guess have ONE giant DAL that is all things to all projects (ugh..) and that would solve it. I could copy and paste partial files around or??
What, if anything is everyone else doing?