Hi :)
Is there any way to make the generated linq classes stay inside a namespace? The reason being that im working on a big project, and there is alot of tables with different names, and i dont want them to be accessable from anywhere in the project, unless we add the namespace..
I know thats already implemented in the entity framework, but until they get that running smooth im not using it again..
I have two ideas, but haven't tried any of them yet. 1. Editing the generated linq class, sorrounding the entire block in a namespace, but that would require me to edit the file manually every time a change is made, another table is added and so on. 2. Removing the dbml file from the app_code folder, but that might not be a good idea.
Thanks in advance :)