我有那種模型: class Publisher(models.Model):
...
class Author(models.Model):
publisher = models.ForeignKey(Publisher, on_delete=models.CASCADE)
class Article(models.Model):
author= models
我在我的應用程序的SQLite數據庫上進行「插入」時遇到了「邏輯」問題。 這些是我的表格。 我應該如何管理檢索CONTACT_ID和photos_id爲了使插入到表contact_photo的「需要」? 我知道我可以通過SQLite生成的最後_id與SELECT seq from sqlite_sequence where ...,但這似乎並不是一個「專業」的解決方案。 有沒有更好的方法來實現我的
我正在與擁有一對多關係的兩個公司和訪問者合作。 public class Company
{
public int CompanyID { get; set; }
public string CompanyName { get; set; }
public virtual ICollection<Visitor> Visitors { get; set; }
}