asp.net – 无法找到请求的.Net Framework数据提供程序.它可能没有安装

完成ASP.NET MVC 3(找到 here)后,我尝试在线发布应用程序.我联系了托管公司,以确定是否可以托管MVC 3应用程序.但我不得不部署(dll文件)应用程序.因此,在遵循 hanselmans blog的一些步骤后,我会遇到以下错误

Unable to find the requested .Net Framework Data Provider. It may not be installed.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentException: Unable to find the
requested .Net Framework Data Provider. It may not be installed.

Source Error:

An unhandled exception was generated during the execution of the
current web request. information regarding the origin and location of
the exception can be identified using the exception stack trace below.

Stack Trace:

[ArgumentException: Unable to find the requested .Net Framework Data
Provider. It may not be installed.]
System.Data.Common.DbProviderFactories.GetFactory(String
providerInvariantName) +1420503
System.Data.Entity.Internal.LazyInternalConnection.TryInitializefromAppConfig(String
name) +362
System.Data.Entity.Internal.LazyInternalConnection.Initialize() +49
System.Data.Entity.Internal.LazyInternalConnection.get_ConnectionHasModel()
+10 System.Data.Entity.Internal.LazyInternalContext.InitializeContext()
+265 System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type
entityType) +17
System.Data.Entity.Internal.Linq.InternalSet1.Initialize() +62
System.Data.Entity.Internal.Linq.InternalSet
1.get_InternalContext()
+15 System.Data.Entity.Infrastructure.DbQuery1.System.Linq.IQueryable.get_Provider()
+37 System.Linq.Queryable.OrderByDescending(IQueryable
1 source,Expression1 keySelector) +66
MvcMusicStore.Controllers.HomeController.GetTopSellingalbums(Int32
count) +420 MvcMusicStore.Controllers.HomeController.Index() +47
lambda_method(Closure,ControllerBase,Object[] ) +40
System.Web.Mvc.ActionMethoddispatcher.Execute(ControllerBase
controller,Object[] parameters) +17
System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext
controllerContext,IDictionary
2 parameters) +188
System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext
controllerContext,ActionDescriptor actionDescriptor,IDictionary`2
parameters) +27

任何帮助表示赞赏.

解决方法

根据我的经验,该错误意味着web.config中连接字符串上的providerName属性值不正确,或者字面上未安装提供程序.如果您的providerName设置为System.Data.sqlServerCe.4.0(sql Server Compact),这在开发中并不常见,我可以保证您没有在Web主机上安装它;它仅在Visual Studio内部用于开发.您可能只需要将其更改为真正的sql Server提供程序:System.Data.sqlClient.

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....