Arto
Results
1
comments of
Arto
I've found a way to get the exception when you have a ModelState: ```c# private Exception? GetExceptionFromModelState(ModelStateDictionary pModelState) { var xError = pModelState.Values.SelectMany(p => p.Errors) .Where(p => p.Exception != null)...