gpt4 book ai didi

android - 如何在 Xamarin Forms 中连接两个表?

转载 作者:搜寻专家 更新时间:2023-10-30 20:34:22 25 4
gpt4 key购买 nike

这可能是一个愚蠢的问题,但我在 sqlite 中保存时遇到了问题。我已经成功地使用了 XF 的 facebook 登录,但也想将那里的信息保存在 sqlite-net-pcl 中。两种模式是:

public class FacebookProfile
{
public string Name { get; set; }
public string Locale { get; set; }
public string Link { get; set; }
[OneToOne]
[JsonProperty("age_range")]
public AgeRange AgeRange { get; set; }
[JsonProperty("first_name")]
public string FirstName { get; set; }
[JsonProperty("last_name")]
public string LastName { get; set; }
public string Gender { get; set; }
public bool IsVerified { get; set; }
[PrimaryKey]
public int Id { get; set; }
}

public class AgeRange
{
public int Min { get; set; }
}

我已成功将信息下载到我的 FacebookProfile 模型并可以显示它。但是,当我试图将它保存在我的 sqlite 数据库中时,FacebookProfile 的 AgeRange 属性在数据库中保存为 null 并且它应该具有一定的值。使用sqlite连接保存的代码是:

using (SQLite.SQLiteConnection conn = new SQLite.SQLiteConnection(App.DB_PATH))
{
conn.CreateTable<FacebookProfile>();
conn.Insert(fp); //fp is the FacebookProfile model info gotten from Facebook API and until this point, fp has agerange min value
}

此时插入数据库的agerange被保存为空,我不知道为什么或者我可能做错了什么。因此,当我尝试在 View 模型中使用以下代码检索它时:

using (SQLite.SQLiteConnection conn = new SQLite.SQLiteConnection(App.DB_PATH))
{
conn.CreateTable<FacebookProfile>();
FacebookProfile = conn.Table<FacebookProfile>().FirstOrDefault();
}

从数据库中检索到的 FacebookProfile 的 agerange 值为 null 但其他人我可以获得正确的信息。可能是什么问题?请帮忙!

最佳答案

Sqlite-Net-pcl 不会识别自定义的 poco 对象,例如:

public AgeRange AgeRange { get; set; }

请记住,Sqlite-net-pcl 基本上只是一个包装器,可以让您省去直接与 Sqlite 库交互的麻烦。所以,不必做这样的事情:

SQLiteCommand insertSQL = new SQLiteCommand("INSERT INTO FacebookProfile (Locale, Link, AgeRange, FirstName, LastNameGender, IsVerified, Id) VALUES (?,?,?,?,?,?,?)", conn);

insertSQL.Parameters.Add(facebookProfile.Locale);
insertSQL.Parameters.Add(facebookProfile.Link);
insertSQL.Parameters.Add(facebookProfile.AgeRange); //Assuming this is an int and not a custom type
insertSQL.Parameters.Add(facebookProfile.FirstName);
insertSQL.Parameters.Add(facebookProfile.LastNameGender);
insertSQL.Parameters.Add(facebookProfile.IsVerified);
insertSQL.Parameters.Add(facebookProfile.Id);

insertSQL.ExecuteNonQuery();

你可以简单地说:

using (SQLite.SQLiteConnection conn = new SQLite.SQLiteConnection(App.DB_PATH))
{
conn.CreateTable<FacebookProfile>();
conn.Insert(fp); //fp is the FacebookProfile model info gotten from Facebook API and until this point, fp has agerange min value
}

但是,它不知道如何处理您的 AgeRange 类。那是一个字符串吗?那是一个整数吗?就 Sqlite 而言,它是什么?正如其他人在评论中所说,包装器不知道如何将该类解释为数据库类型,例如 STRING、NUMERIC 等。

一般来说,我取得了更大的成功(当使用 sqlite-net-pcl 时)创建表结构的精确副本作为中间类对象并通过 FacebookProfile 的父类插入/更新它们。这在编程模式中称为 Anemic domain model其中:“贫血领域模型是使用软件领域模型,其中领域对象包含很少或不包含业务逻辑(验证、计算、业务规则等)。”

在您的情况下,它可能看起来像这样:

public class dbFacebookProfile
{
dbFacebookProfile(){}

dbFacebookProfile(FacebookProfile fbProfile)
{
this.Name = fbProfile.Name;
this.Locale = fbProfile.Locale;
this.AgeRange fbProfile.AgeRange.Min; //or, however you want to modify this object to get the age range (Min?) from the object.
}

public SaveToDB()
{
using (SQLite.SQLiteConnection conn = new SQLite.SQLiteConnection(App.DB_PATH))
{
conn.CreateTable<this>();
conn.Insert(this);
}
}

关于android - 如何在 Xamarin Forms 中连接两个表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48509464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com