我尝试Database
根据本教程进行创建。
这是我的课:
public abstract class File
{
[Key]
public string fileName { get; set; }
public double size{ get; set; }
}
public class SubFile: File
{
public string secondName{ get; set; }
}
public class MyContext : DbContext
{
public DbSet<SubFile> subFile{ get; set; }
}
主要的
var sb = new SubFile{ fileName = "test.doc" };
sb.secondName= "test2.doc";
using (var db = new MyContext())
{
db.SubFile.Add(sb);
db.SaveChanges();
}
尝试保存后出现错误:
从 ObjectStateEntry 检索值时出错。有关详细信息,请参阅内部异常。