Equivalent for .HasOptional in Entity Framework Core 1 (EF7)

前端 未结 2 839
终归单人心
终归单人心 2020-12-11 00:36

Consider two classes.

public class File
{
    [Key]
    public string Id { get; set; }

    public string Message_Id { get; set; }

    internal Message Mess         


        
2条回答
  •  独厮守ぢ
    2020-12-11 00:47

    You will not find an equivalent method in EF 7. By convention, a property whose CLR type can contain null will be configured as optional. So what decide if the relationship is optional or not is if the FK property is nullable or not respectively.

    In summary, due to your Message_Id FK property is string, it already accepts null value, so if you use the following Fluent Api configuration:

    modelBuilder.Entity()
                .HasOne(s => s.Message)
                .WithMany()
                .HasForeignKey(e => e.Message_Id)
    

    EF will configure your relationship as optional (or N : 0..1 as requested).

    In case of your FK property is value type like int, you should declare it as nullable (int?).

    Also I noticed now you have a navigation property with internal access modifier. You should always declare your entity properties as public.

提交回复
热议问题