0

数据库上下文在 EF 中自动生成。太好了,但是如何防止它删除我的域类包含?有什么技巧吗?

namespace EFContext
{
    using xxx.DomainObjects;//<---------------------------------- here
    using System;
    using System.Data.Entity;
    using System.Data.Entity.Infrastructure;

    public partial class EFContextContainer : DbContext

// <auto-generated>
//    This code was generated from a template.
4

1 回答 1

1

在另一个文件中创建部分 EFContextContainer 并在其中包含命名空间。

于 2013-08-23T14:05:38.163 回答