我对模型进行了一些更改,其中包括向类添加新字段并创建新类(表),如下所示:
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.IO;
using System.Linq;
using Newtonsoft.Json;
namespace SurveyTool.Models
{
public class Industry
{
[Key]
public int ID { get; set; }
public string name { get; set; }
}
}
当我Add-Migration
和Update-Database
时,添加了新字段。但是,新表不是。我再次尝试了该过程,最新的迁移为空。
为什么添加新表的标准过程不起作用?
谢谢!