Otis wrote:
Namespace control is planned for a future version, but it's not as simple as placing things in namespaces, as it has far reaching consequences, as for e.g. entities it means referring code has to work with the namespaces as well. For stored procedures, would that mean a file per namespace or 1 file with all the namespaces?
I like the way Resharper recommends naming conventions based on folder structure.
project
- Students (folder)
- Student.cs (namespace: projects.Students.Student)
Personally my goal with LLBLGEN is to generate the code and forget about it. But right now accessing my over 1k storedprocs in one file makes it a pain on the BL to access the procs.
I mean when I'm working on my student object and type Dal.DatabaseSpecific.RetrievalProcedures.??? The massive list is a pain especially if the db admin didn't name them in a way that makes sense.
Which sadly I don't have any control over it.
Since I have to point to the database specific folder for procs, It would be nice to have some structure there as well.
So in my case having multiple files or folders or one file for namespaces is not an issue for me since my goal is not to touch the generated code.