In the SubSonic docs it lists:
o By default, the Tool generates insert and update code that uses System.Web.HttpContext.Current.User.Identity.Name and System.Threading.Thread.CurrentPrincipal.Identity.Name. Some generated methods may also make use of System.Web classes. If you don’t want to have to add a reference to System.Web in your project, you will have to provide your own templates.
I tried to creat a SubSonic DAL of type C# Class Library. Of course, the files generate, however an error is thrown during build time:
*The type or namespace name 'HttpContext' does not exist ...*
("Is there a separate template available for creating a generic class library DAL that does not include System.Web references?" ? Where : How to modify the existing templates)
Thanks!