从nhibernate.sourceforge.net上下载了最新的0.6.0.0版本,然后用vs.net打开,先打开nhibernate.sln,
build通过,然后打开nhibernate.examples-1.1.sln,build通过
为了在debug状态下快速查看nhibernate效果,做了以下调整:
1. project->nhibernate.examples->userfixture.cs里面的函数改为public static void main()
2. project->nhibernate.examples性质改为 windows console application
3. 根据user.hbm.xml,建立数据库nhibernate,建立表users
4. project->nhibernate之app.config文件中的mssqlserver2000 dialect配置,其中connection_string与
一般web.config中的配置一样
初步调试运行结果:
调试单步运行,没有问题,可以看到users表中加入了相应的row, debug目录下的log.txt中有大量的log信息
看来log4net也是很有用的