Is there any way to create a linq2sql schema (*.dbml-file) in VS2012 with many object diagrams for different parts of the database. For instance one diagram for customer related tables and another diagram for product related tables.
The problem is, if I've a big database with many tables the object diagram looks overloaded.
There is nothing keeping you from creating different
dbml/DataContextobjects that cover different sub-sets of your database but you cannot query or join across differentDataContextobjects.If your goal is simply to create more manageable diagrams, I would suggest you do that at the SQL level using SSMS Diagrams. You will likely create more issues than solutions segregating your tables across different
DataContextobjects.