我正在尝试使用类为表创建一个外键。我有一个类名 person(它是我数据库中的一个表名)。
类人 { [PrimaryKey, AutoIncrement] public int ID { get; 放; }
public string DoctorName { get; set; }
public string Date { get; set; }
public string Time { get; set; }
public string Prescription { get; set; }
public string Image { get; set; }
public string Audio { get; set; }
}
另一个类名是处方,因此需要为该类中的人员 ID 设置外键。所以你能帮帮我吗
先感谢您。