Change name space of LINQ to SQL generated classes

c#, linq-to-sql, namespaces

Solution

Open the designer and click on the background, there are two properties called `Entity Namespace` and `Context Namespace`, you can use those to set the namespace for the generated classes.

Problem

Is there anyway I can change the namespace of the classes generated by LINQ to SQL right now it goes ProjectName.FolderName Is there anyways I can change this default convention

Original source