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.
当使用实体框架从数据库生成模型(edmx)时,所有的键和约束都将包含在模型中。
那么想知道索引是否也包含在模型中?例如,如果我更改数据库上的唯一索引(不是主键),它会影响 edmx 吗?
不,它没有。索引是纯粹的数据库辅助构造。EF 不关心它。它也不关心(还)索引的唯一性(PK 索引除外),因为 EF 还不支持唯一键约束。