数据库中的实体框架生成命名空间错误

时间:2015-06-26 17:58:47

标签: c# asp.net entity-framework namespaces

我从数据库生成EF模型,我在EF生成的所有类中使用自动生成代码中的命名空间错误。

以下是其中一个类的示例:

//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated from a template.
//
//     Manual changes to this file may cause unexpected behavior in your application.
//     Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace WebApplication5.Models
{
using System;
using System.Collections.Generic;

public partial class Flag
{
    public int ID { get; set; }
    public string Type { get; set; }
    public int UserGameID { get; set; }

    public virtual UserGame UserGame { get; set; }
}
}

我在构建时遇到以下错误:

using namespace指令只能应用于名称空间; &#39;系统&#39;是一个类型而不是命名空间

1 个答案:

答案 0 :(得分:0)

发现了这个问题。对不起,我不清楚这个问题。我遇到了确切的问题shown here,但没有意识到我的桌子造成了问题。