反射机制问题相关
在研究三层体系结构中遇到工厂类创建接口失败问题。“Could not load file or assembly 'SqlServerDAL' or one of its dependencies.
The system cannot find the file specified. ”我已经检查了相关路径啊。
数据库JSJ025,数据表JSJUser
代码见附件。
表结构创建:
create table JSJUser
(
[ID] [int] identity(1,1) not null,
[Account] [varchar](20) not null,
[Password] [varchar](50) not null,
[FirstName] [varchar](20) null,
[LastName] [varchar](20) null,
[Phone] [varchar](20) null,
[Email] [varchar](50) null,
[Address] [varchar](50) null,
constraint [PK_JSJUser_ID] primary key clustered
([ID] asc)
with(ignore_dup_key = on)
)
望各位高手指点。