本文介绍了如何在客户端计算机上托管连接到sqlserver db的ASP.NET mvc5 Web应用程序,而无需在该计算机上安装mssqlserver?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用ASP.Net MVC5创建一个Web应用程序。我在EF中使用Code First方法来创建和操作Db,Db托管在我的机器上的localdb服务器实例上的零售版本的MSSQLServer上(用于开发)。我打算将该应用程序分发给多个客户端,但仅在其各自的计算机上进行脱机使用。我不想经历在每台客户端计算机上安装MSSQLServer的麻烦。这个问题的解决方法是什么?



我尝试了什么:



我没有尝试任何东西,因为我没有任何客户端来测试这个

I am creating a web application using ASP.Net MVC5. I am using Code First approach in EF to create and manipulate the Db which is hosted on a retail version of MSSQLServer on the localdb server instance on my machine (used for development). I intend to distribute that application to multiple clients but for offline use on their respective machines only. I don't want to go through the hassle of installing MSSQLServer on each client machine. What would be the workaround to this issue?

What I have tried:

I haven't tried anything as I don't have any clients to test this on

推荐答案


这篇关于如何在客户端计算机上托管连接到sqlserver db的ASP.NET mvc5 Web应用程序,而无需在该计算机上安装mssqlserver?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 22:56