c# – 由于LocalDB是用于开发的,所以使用什么DB进行生产?

前端之家收集整理的这篇文章主要介绍了c# – 由于LocalDB是用于开发的,所以使用什么DB进行生产?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在本地数据库sql Server Express之间我有点困惑.我已经从网站上阅读了LocalDB是sql Server Express( source)的改进版本.我认为这意味着LocalDB正在替换sql Server Express.

然而,令人困惑的是,在几个网站上也提到了LocalDB仅用于开发目的,并不意味着用于生产.

在这种情况下,我将使用我的计算机上的LocalDB来开发和测试我的Web应用程序.由于LocalDB是sql Server Express的替代品,也不是用于生产的,那么当我准备好发布我的应用程序时,应该使用什么数据库(如果我没有钱,那么是完整的sql Server)

解决方法

I would assume this implies that LocalDB is replacing sql Server Express.

你的假设是不正确的继续阅读您链接文章

LocalDB is not a replacement for sql Server Express — it is an addition to sql Server Express lineup. While LocalDB is meant for developers,the regular sql Server Express will continue to exist as a free sql Server edition,fully compatible with and easily upgradeable to higher sql Server editions.

您仍然会使用sql Server Express或更高版本的sql Server进行生产.或者更好的是,您可以从数据库抽象应用程序,以便您可以使用任何服务器(MysqL,Oracle等)

猜你在找的C#相关文章