我有一个从以下代码中检索到的用户列表:
var Response1 =JsonConvert.DeserializeObject<List<User>>(jsonstring);
Public class User
{
public string userid {get; set;}
public string username{get; set;}
public string pwd {get; set;}
}
是否有任何方法将Response1(type of List<User>
)插入现有的sqlite用户表(uwp),而不是每种方法。
答案 0 :(得分:1)
您可以使用SQLiteConnection.InsertAll Method:
using ( var db = new SQLiteConnection( new SQLitePlatformWinRT(), DbPath ) )
{
db.InsertAll(Response1);
}
我希望能提供帮助:)