private void Context_EndRequest(object sender, EventArgs e)
{
var context = ((HttpApplication)sender).Context;
if (context.Items[typeof(IServiceScope)] is IServiceScope scope)
{
scope.Dispose();
}
}
当我尝试构建我的项目(Framework 4.7.2)时,我得到了
:错误 CS1026:)预期:错误 CS1002:;预期:错误CS1513: }预计
上线了
if (context.Items[typeof(IServiceScope)] is IServiceScope scope)
但我不知道它在哪里抛出错误。
它有助于通过 Nuget 更新“Microsoft.Net.Compilers”
现在构建没有错误。
谢谢 Dario M. 和梅森 - 由于我缺乏声誉点,我无法对您的评论进行投票,但您的评论帮助我解决了我的问题。谢谢!