未能加载文件或程序集,或它的某一个依赖项
错误提示如下:未能加载文件或程序集“datasource\=.;uid\=sa;pwd\=213;database\=Layer;”或它的某一个依赖项。给定程序集名称或基...
错误提示如下:
未能加载文件或程序集“data source\=.;uid\=sa;pwd\=213;database\=Layer;”或它的某一个依赖项。给定程序集名称或基本代码无效。 (异常来自 HRESULT:0x80131047)
我用的是三层工厂模式开发的系统。
DALFactory层:
namespace DALFactory
{
public sealed class DataAccess
{
private static readonly string path = System.Configuration.ConfigurationSettings.AppSettings["ConnStr"];
public static IUserDAL CreateUser()
{
string classname = path + ".UserDAL";
return (IUserDAL)Assembly.Load(path).CreateInstance(classname);
}
}
}
源错误:
提示29行出错,是什么原因?
行 27: {
行 28: string classname = path + ".UserDAL";
行 29: return (IUserDAL)Assembly.Load(path).CreateInstance(classname);
web.config配置文件:
<appSettings>
<add key="ConnStr" value="data source=.;uid=sa;pwd=213;database=Layer;" />
</appSettings> 展开
未能加载文件或程序集“data source\=.;uid\=sa;pwd\=213;database\=Layer;”或它的某一个依赖项。给定程序集名称或基本代码无效。 (异常来自 HRESULT:0x80131047)
我用的是三层工厂模式开发的系统。
DALFactory层:
namespace DALFactory
{
public sealed class DataAccess
{
private static readonly string path = System.Configuration.ConfigurationSettings.AppSettings["ConnStr"];
public static IUserDAL CreateUser()
{
string classname = path + ".UserDAL";
return (IUserDAL)Assembly.Load(path).CreateInstance(classname);
}
}
}
源错误:
提示29行出错,是什么原因?
行 27: {
行 28: string classname = path + ".UserDAL";
行 29: return (IUserDAL)Assembly.Load(path).CreateInstance(classname);
web.config配置文件:
<appSettings>
<add key="ConnStr" value="data source=.;uid=sa;pwd=213;database=Layer;" />
</appSettings> 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询