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.
我是数据库和实体框架的新手,当我首先使用 Model 构建数据库时,有三种选择,所以这里 Many 表示 0..* 或 1..* ?如果关系是一对多的,这里的 Many 是 0..* ,这是否意味着这里的外键可以为空?
谢谢。
0..* 表示 0 到多个,因此外部表中不需要匹配的条目。
1..* 表示一对多,因此外表中必须有一个条目。