为了可扩展性,方便以后对于代码的修改维护,使用动态创建DAL层对象。

1、首先在webconfig中的configuration下添加配置项

 <appSettings>
<add key="IStuDAL" value="StuDAL.StudentDAL"/>
</appSettings>

2、在工厂中创建实例

 namespace DALFactory
{
public class DALHelper
{
public static IStuDAL AddStu()
{
//IStuDAL stu = new StudentDAL();
//return stu; //这里应该动态创建类的实例
string path = ConfigurationManager.AppSettings["IStuDAL"]; //得到StuDAL.StudentDAL
string type = path.Split('.')[]; //得到StuDAL
Assembly ab = Assembly.Load(type);
return (IStuDAL)ab.CreateInstance(path);
} public static IStuDAL GetAllStudent()
{
string path=ConfigurationManager.AppSettings["IStuDAL"]; string type = path.Split('.')[];
Assembly ab = Assembly.Load(type);
return (IStuDAL)ab.CreateInstance(path);
}
}
}

注意一点
用此方法前需要在UI层中添加对DAL层引用

04-14 21:07