我有来自旧城堡的这段代码:
IoC.Container.Register(
AllTypes
.FromAssemblyNamed(a)
.Pick().WithService.FirstInterface()
.Configure(o => o.LifeStyle.PerWebRequest));
当我升级到城堡 3.2 时,我收到此错误:
Castle.MicroKernel.Registration.AllTypes' 已过时
而o.LifeStyle.PerWebRequest的这个错误:
只有 assignment、call、increment、decrement、await 和 new 对象表达式可以用作语句
我怎样才能解决这个问题?