public int AddRange(IEnumerable<Doodaa> list)
{
int n = 0;
using (var database = new SQLiteConnection(_helper.WritableDatabase.Path))
{
database.BeginTransaction();
foreach(Doodaa d in list)
n=database.Insert(d);
database.Commit();
}
return n;
}
Insightful, profound, generous, witty, genius; all words that might be used somewhere in this blog.
1 comment:
Bob
Here is a database compatible with MonoDroid:
http://www.kellermansoftware.com/p-43-ninja-net-database-pro.aspx
Post a Comment