I got a set of T4 templates to create domain objects from each table in whatever database I point it to. I tested this with SQL Server and SQLite. Let me put some screenshots, before I ask my questions.

EntityCreator.tt is the main template. You only set some properties and run this template as a "Run Custom Tool". Then you get all the classes generated for you.

This is what the generated classes look like inside. As you can see, I'm generating them as partial classes.
I created this set of templates, so that I wouldn't have to code this by hand. I don't want to spend my time doing tedious stuff by hand, when it can be generated. The other reason is that this will facilitate using NHibernate. We can put the actual class logic on a different file. We could name them something like ClassName.Logic.cs. So ANSI.cs, would have a counterpart of ANSI.Logic.cs.
I know that we have a lot of these domain type classes all over our framework. I used WheelMUD.DomainObjects for a lack of a better name. So here are my questions:
Would it be feasable for us to put all the "domain" classes in one namespace?
Would we then just keep the current layout and rename the current classes as ClassName.Logic.cs?