Entity framework code-first null foreign key

前端 未结 4 1383
梦如初夏
梦如初夏 2020-11-28 05:34

I have a User < Country model. A user belongs to a country, but may not belong to any (null foreign key).

How do I set this up? When I t

4条回答
  •  一整个雨季
    2020-11-28 06:22

    You must make your foreign key nullable:

    public class User
    {
        public int Id { get; set; }
        public int? CountryId { get; set; }
        public virtual Country Country { get; set; }
    }
    

提交回复
热议问题