I have 4 SQL tables as follows.
- Registration
- Optional table 1 [RegistrationID Foreign Key]
- Optional table 2 [RegistrationID Foreign Key]
- Optional table 3 [RegistrationID Foreign Key]
基本上,登记包含所有这些任择表格的数据,但每个任择表格都通过外国钥匙持有不同的额外数据。
利用LINQ至QQ,选择与这一选择表有关的登记的最佳方式是什么?
Pseudo-code would be
select all registrations where an entry in table [x] exists
Appreciate your help
Marko