0

我想知道我是否可以使用 SQLite 数据库和 SQLite-Net Exensions 将 2 个外键添加到同一个表中,每次都有一个外键为空。

我的结构如下:

[Table("Picture")]
public class Picture
{
    [PrimaryKey]
    public int Id { get; set; }

    public string Name { get; set; }

    [ForeignKey(typeof(Contact))] // => Allow Null ?
    public string TokenContact { get; set; }

    [ForeignKey(typeof(Profile))] // Allow Null ?
    public string TokenProfile { get; set; }
}

[Table("Contact")]
public class Contact
{
    [PrimaryKey]
    public string Token {get;set;}

    [OneToMany]   
    public ObservableCollection<Picture> CollectionPicture {get; set;}
 }

[Table("Profile")]
public class Profile:Contact
{

// Some other properties...

 }

感谢您的建议!

4

0 回答 0