用新版本的结构图重写这一行?

发布于 2024-10-17 06:47:34 字数 465 浏览 1 评论 0原文

您好,我最近将结构图版本更新到最新版本,系统提示我更改此行,但我不太确定如何更改,我尝试过,但没有运气。该代码有效,但我想使用新的“方式”。

ForRequestedType<ISessionSourceConfiguration>().TheDefault.Is.OfConcreteType<MsSqlSessionSourceConfiguration>().WithCtorArg("connectionString").EqualTo(connectionString);

与此相同

For<INHibernateUnitOfWork>().CacheBy(InstanceScope.Hybrid).TheDefault.Is.OfConcreteType<NHibernateUnitOfWork>();

感谢您的提示

Hi I recently updated my version of structuremap to the latest release and i get prompted to change this line but I'm not really sure how, I tried tho but with no luck. This code works but I would like to user the new "way".

ForRequestedType<ISessionSourceConfiguration>().TheDefault.Is.OfConcreteType<MsSqlSessionSourceConfiguration>().WithCtorArg("connectionString").EqualTo(connectionString);

Same with this

For<INHibernateUnitOfWork>().CacheBy(InstanceScope.Hybrid).TheDefault.Is.OfConcreteType<NHibernateUnitOfWork>();

Thanks for tips

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱娆 2024-10-24 06:47:34

您应该能够使用:

For<ISessionSourceConfiguration>().Use<MsSqlSessionSourceConfiguration>()
  .Ctor<string>("connectionString").Is(connectionString);

For<INHibernateUnitOfWork>().HybridHttpOrThreadLocalScoped()
  .Use<NHibernateUnitOfWork>();

You should be able to use:

For<ISessionSourceConfiguration>().Use<MsSqlSessionSourceConfiguration>()
  .Ctor<string>("connectionString").Is(connectionString);

and

For<INHibernateUnitOfWork>().HybridHttpOrThreadLocalScoped()
  .Use<NHibernateUnitOfWork>();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文