Performing Insert OR Update (upsert) on sql server compact edition

后端 未结 7 1712
陌清茗
陌清茗 2020-12-17 06:36

I have c# project that is using sqlserver compact edition and entity framework for data access. I have the need to insert or update a large amount of rows, 5000+ or more to

相关标签:
7条回答
  • 2020-12-17 07:32

    SQL Server compact edition is pretty early in development at this point. Also, depending on your device, memory-disk access can be pretty slow, and SQLCE plus .NET type-safety overhead is pretty intensive. It works best with a pretty static data store.

    I suggest you either use a lighter-weight API or consider SQLite.

    0 讨论(0)
提交回复
热议问题