Async logging throwing a NullReferenceException

前端 未结 3 367
既然无缘
既然无缘 2021-01-02 06:35

I am trying to asynchronously log some information to SQL Server inside of an MVC 4 controller action targeting .NET 4.0 using the AsyncTargetingPack. I would jump straight

3条回答
  •  梦毁少年i
    2021-01-02 06:56

    Dataflow only works on .NET 4.5. The fact that you're running it on .NET 4.0 is unsupported and is likely why you're seeing spurious exceptions.

提交回复
热议问题