Linq to SQL File Size

What I want to know is if we put each table in one LinqToSQL file we lose performance? Is it better to place each table in different LinqToSQL files or is it the same as inserting one.

I hope I have explained my question.

0


source to share


1 answer


There will be no runtime penalty, but it can slow down intelisense after you get millions of tables in one file.



For what it's worth, the default SQL Metal behavior puts all tables in the database in a single file.

+1


source







All Articles