0

I want to use sqlite bulk insert with windows 8 application.. right now I am inserting one row at a time and it takes huge amount of time when working with lots and lots of rows. Can any one help me with this?

Rohit

4

1 回答 1

0

You can use InsertAll(...) or InsertAllAsync(...) method which takes IEnumerable<T> (List<T>, ObservableCollection<T>, etc) as parameter.

于 2013-09-28T17:07:49.040 回答