Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张桌子Employer和一张桌子EmployerParam。将这两者置于一对多关系中是数据库设计中的一个轻微误判。几乎每个 Employer 在表中都有相同的十个唯一名称-值对EmployerParam,因此该表中针对一个雇主的每一行实际上应该是表中的一列Employer。对于一位雇主,我需要创建一个外观,使两张桌子看起来像一张桌子。
Employer
EmployerParam
有什么办法可以做到这一点,使用 EF5、普通的旧 C#、T-SQL 或其他任何东西?
我认为您需要一个SQL 视图。