I know, i'm on question mode tonight,
I'm in the middle of building a desktop application. Luckily for me a choose a open architecture because i ran into the following problem:
My application allows users to add operations. In my tests, i only added small (test) operations which are easily manageble. Each operation is added to a datastore which currently is a SQL CE 4.0 database (accessed using EF 4.1 code first which is great).
Now i tested the application using a common operation which is bigger (approximatly 4000 rows in the Database). Rather then taking a few seconds, it actually takes a few minutes for insert! In the big table, there is only 1 foreign key and ofcourse the primary key, but it seems 4000 rows are just to much for it.
All rows are inserted in 1 batch and the real performance lack is on the SaveChanges command.
I've red about using manual queries (havent tested it) but this is no preferred option since transactions arent supported and it must be an isolated operation.
So, do i need a new strategy here? On SQL Server 2008 you can do a bulk insert but appareantly that is also not supported by Sql Server CE.
What clientside solutions are as flexible as SQL Server CE and lightweight? (e.g. Ofcourse i dont want the user to install SQL Server, nor use some native components).
I can use serialization in some forms but that feels like reinventing the wheel and is alot of work (upgrading, integrity, multithreaded access etc).
Thanks in advance!