将列表<collection>插入到sql lite数据库UWP中

时间:2017-08-18 11:23:16

标签: sql list

我有一个从以下代码中检索到的用户列表:

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),而不是每种方法。

1 个答案:

答案 0 :(得分:1)

您可以使用SQLiteConnection.InsertAll Method

using ( var db = new SQLiteConnection( new SQLitePlatformWinRT(), DbPath ) ) 
{
     db.InsertAll(Response1);
}

我希望能提供帮助:)