有没有办法将现有数据库中的数据转换为可以轻松放入种子方法的对象?
本质上,我想让一些人通过表单向我的数据库添加行,然后将其转换为一个对象,我可以在需要进行更改的任何时候重新播种数据库。
数据库本身是使用以下模型通过代码优先创建的:
public class Combo
{
public int Id { get; set; }
public string MainPrefix { get; set; }
public string MainDescriptor { get; set; }
public string MainDish { get; set; }
public string Connector { get; set; }
public string SecondaryDescriptor { get; set; }
public string SecondaryDish { get; set; }
}