Sql Server Adapter 2.0
for the sake of examples I'm using NorthWind db. I add DTOs to my tasks using post http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=6261
I can get all this to generate within 2 projects. Now I would like to seperate this into 3 projects. More for proof of concept, nothing concrete.
so I have it generating 3 projects. like so:
[projectName]\BLL
DTOs
[projectName]\Model
DB Generic
[projectName]\DAL
Adapter (DB Specific)
the directory name is literaly [projectName]. how can I change this to read NorthWind without hardcoding the value?
how can i modify the RootNamespace value so the templates produce namespaces like
NorthWind.BLL.DTOClasses
NorthWind.Model.EntityClasses
NorthWind.DLL.DatabaseSpecific