My database doesn’t have any FK mapped in the tables, only PK indexes.
If I use linq2sql, what are the ramifications of this db design?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When you generate your model you will get a set of free standing tables.
You do not get all of the join functionality out of the box.
If you are only going to use Linq2sql to read data from and write data to one table at a time, you do not need the foreign keys.