无法与 EF fluent 建立一对多关系 API

Can not set up one to many relationship with EF fluent API

我正在尝试通过 fluent api 使用 EF Core 配置一对多关系,但我不断收到以下错误:

The expression 'x => x.parent' is not a valid property expression. The expression should represent a simple property access: 't => t.MyProperty'. (Parameter 'propertyAccessExpression')'

型号

        public class Parent {
            public int ID { get; set; }
            public string Name { get; set; }
            public ICollection<Child> Children { get; set; }
        }
        public class Child {
            public int ID { get; set; }
            public string Name { get; set; }
            public Parent parent;
            public int ParentId { get; set; }
        }

上下文

public class MyContext : DbContext {
            public DbSet<Parent> Parents { get; set; }
            public DbSet<Child> Children { get; set; }
            protected override void OnModelCreating(ModelBuilder modelBuilder) {

                base.OnModelCreating(modelBuilder);
                modelBuilder.Entity<Child>().HasKey(x => x.ID);
                modelBuilder.Entity<Parent>().HasKey(x => x.ID);

                modelBuilder.Entity<Child>()
                                .HasOne(x => x.parent)
                                .WithMany(y => y.Children)
                                .HasForeignKey(t => t.ParentId);
            }

            public MyContext(DbContextOptions options):base(options) { }
        }

用法

 static async Task Main(string[] args)
        {
            string connectionString = "[someconnectionstring]"
            var optionsBuilder = new DbContextOptionsBuilder<MyContext>();
            optionsBuilder.UseSqlServer(connectionString);
            MyContext context = new MyContext(optionsBuilder.Options);
            await context.Parents.AddAsync(new Parent { 
                                               Name = "myparent", 
                                               Children = new List<Child>() {
                                                                new Child { Name = "Child1" },
                                                                new Child { Name = "Child2" } }
                                               }); //i am getting the error here
            await context.SaveChangesAsync();
}

parent in Child class 是一个字段。应该是public属性。详情请看https://docs.microsoft.com/en-us/ef/ef6/modeling/code-first/fluent/types-and-properties#property-mapping