gpt4 book ai didi

c# - sqlite 不识别通用列表

转载 作者:行者123 更新时间:2023-11-30 16:13:20 27 4
gpt4 key购买 nike

在 Windows 应用商店应用程序项目中,我从如下所示的 Web 服务获取 JSON:http://paste2.org/jfMJ2AGA

我有这两个类

public class media
{
public string id { get; set; }
public string type { get; set; }
public string image { get; set; }
public string video { get; set; }
public string snapshot { get; set; }
public string url { get; set; }
public string snapshot_url { get; set; }
}

public class artigos
{
public string menu { get; set; }
public string submenu { get; set; }
public string title { get; set; }
public string subtitle { get; set; }
public string description { get; set; }
public List<media> media { get; set; }
}

我正在创建一个 sqlite 数据库:

dbPath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "Database.sqlite");

//start dB
using (var db = new SQLite.SQLiteConnection(dbPath))
{
db.CreateTable<artigos>();
}

但是我得到这个错误:

Don't know about System.Collections.Generic.List`1[xxxxx.media]

我做错了什么吗?

最佳答案

Sqllite 不支持列表。这意味着你不能拥有

public List<media> media { get; set; } 

关于c# - sqlite 不识别通用列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21833749/

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