从我的模型类中运行 add-migration 时,以下属性 Journy 类型未在 up 方法中添加。我如何添加到 DB。如果我在 up 方法中手动添加。在 Next add-migration 命令中,它正在生成丢弃列数据库中的命令我该如何克服这个问题。
public string JournyType { get { return OneWay ? "OneWay" : "ReturnJourny"; } }
[NotMapped]
public bool OneWay { get; set; }
[NotMapped]
public bool Return { get; set; }