Skip to:
Calling BeginInvoke() on delegates is obsolete and throws an exception in .NET Core:
BeginInvoke()
System.PlatformNotSupportedException : Operation is not supported on this platform.
The same thing can be done with Task.Run().
Task.Run()
This is required for https://nhibernate.jira.com/browse/NH-3807#icft=NH-3807
Calling
BeginInvoke()
on delegates is obsolete and throws an exception in .NET Core:The same thing can be done with
Task.Run()
.This is required for https://nhibernate.jira.com/browse/NH-3807#icft=NH-3807