What is the best local-database solution for WPF applications?

后端 未结 5 1224
悲&欢浪女
悲&欢浪女 2021-02-05 20:18

What is currently the best solution for WPF applications which are meant to be used on one computer where various users log into them and use t

5条回答
  •  情歌与酒
    2021-02-05 20:37

    SQL Server Compact edition is my choice because of the following benefits:

    • A small runtime library that you can distribute with your app
    • Compatible with Linq to Sql (search "SqlMetal.exe")
    • Integrated design experience with Visual Studio 2008

    It's a nice all rounder as a lightweight solution for a .NET app.

    http://www.microsoft.com/Sqlserver/2008/en/us/compact.aspx

提交回复
热议问题