NHibernate命名空间
我的项目中需要有什么命名空间才能执行该命令; ISession.Evict(obj)????
What namespace do I need to have in my project to execute the command;
ISession.Evict(obj)????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该只需要
NHibernate
以及您用于代理的任何内容,例如NHibernate.ByteCode.Castle
。仅使用 ISession 就应该没有问题。另请注意,如果您在同一类中使用 Fluent 的任何项目,则需要
FluentNHibernate
。You should just need
NHibernate
and whatever you're using for proxy likeNHibernate.ByteCode.Castle
. Should have no problem with ISession with just those.Note also that you'll need
FluentNHibernate
if you are using any of Fluent's items in the same class.