摘要:
NullableModel.cs namespace Castle.ActiveRecord.Tests.Model{ using System; using Nullables; [ActiveRecord] public class NullableModel : ActiveRecordBase { private int id; p... 阅读全文
posted @ 2006-09-25 16:19 剑廿三 阅读(299) 评论(0) 推荐(0)
|
|||
|
摘要:
NullableModel.cs namespace Castle.ActiveRecord.Tests.Model{ using System; using Nullables; [ActiveRecord] public class NullableModel : ActiveRecordBase { private int id; p... 阅读全文
posted @ 2006-09-25 16:19 剑廿三 阅读(299) 评论(0) 推荐(0)
摘要:
在书写 ActiveRecord 配置的地方一定要加上 isWeb=true,例如 看起来这不是可加可不加的选项,而是非加不可的选项。由于 AR 源代码中按线程管理 NHibernate Session ,不同于桌面应用的单线程,Web 是使用当前的线程 HttpContext.Current 处理事情,isWeb=true 的作用就是使 AR 的 Session 管理符合 Web 服务端的多线程... 阅读全文
posted @ 2006-09-25 15:52 剑廿三 阅读(340) 评论(0) 推荐(0)
摘要:
一. 在设计表时上点这个按钮:二. 选择要做索引的字段和顺序三. 设定唯一约束四. 如果有多种索引的话,定一个名字。完成后点“关闭”,然后保存表设计。 阅读全文
posted @ 2006-09-25 14:50 剑廿三 阅读(2263) 评论(0) 推荐(0) |
|||