如何强制Entity Frame映射`Intrald`导航属性?

How to force Entity Framework to map `internal` navigation properties?(如何强制Entity Frame映射`Intrald`导航属性?)
本文介绍了如何强制Entity Frame映射`Intrald`导航属性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用Code FirstEF 5.0我有以下几点:

internal class Entities : DbContext
{
    public DbSet<User> Users { get; set; }
    public DbSet<Project> Projects { get; set; }
}

// User class which holds a list of 'Project' class
public class User
{
    private List<Project> _projects = new List<Project>();

    public int Id { get; set; }
    internal List<Project> Projects
    {
        get { return _projects; }
        set { _projects = value; }
    }
}

// Project class which holds a list of 'Milestone' class
public class Project
{
    private List<Milestone> _milestones = new List<Milestone>();

    public int Id { get; set; }
    public string Title { get; set; }
    internal List<Milestone> MileStones
    {
        get { return _milestones; }
        set { _milestones = value; }
    }
}
尽管EF已经正确地创建了表和关系(一对多For:User=>Project=>Milmark),但如果我创建了一个具有一些项目的用户并将其添加到DbContext,则只会将该用户添加到,而不会添加到他的项目中。对于具有里程碑的项目的用户也是如此。我是这样做的:

public void AddUser(User user)
{
    using (var repository = new Entities())
    {
        repository.Users.Add(user);
        repository.SaveChanges();
    }
}

我的问题是如何强制EF自动插入或更新复杂实体(级联),从而添加一个具有项目列表的用户,自动将该用户插入USERS表中,并将其项目插入PROJECTS表中(关系正确)?

第5版EF那么智能吗?还是我应该手动完成?

推荐答案

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    modelBuilder.Entity<User>().HasMany(x => x.Projects);
}

这篇关于如何强制Entity Frame映射`Intrald`导航属性?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)