我从数据库生成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;是一个类型而不是命名空间