windows手机中sqlite的外键

时间:2013-07-26 07:09:34

标签: sqlite windows-phone-7 windows-phone-8 windows-phone

我正在尝试使用类创建表的foregin键。我有一个类名人(它是我的数据库中的表名)。

类人物     {        [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。 那么请你帮帮我

提前谢谢你。