NickCraver / StackExchange.Exceptional

Error handler used for the Stack Exchange network
https://nickcraver.com/StackExchange.Exceptional/
Apache License 2.0
859 stars 170 forks source link

Update AspDotNetCore.md #143

Closed Steve-Brown closed 5 years ago

Steve-Brown commented 5 years ago

Documentation currently states: { "Exceptional": { "ErrorStore": { "ApplicationName": "Samples (ASP.NET Core)", "Type": "SQL", "ConnectionString": "Server=.;Database=Local.Exceptions;Trusted_Connection=True;" } } The above always loads the MemoryStore.

The following works properly and is confirmed as functional by the AspNetCore test project: { "Exceptional": { "Store": { "ApplicationName": "Samples (ASP.NET Core)", "Type": "SQL", "ConnectionString": "Server=.;Database=Local.Exceptions;Trusted_Connection=True;" } }

NickCraver commented 5 years ago

Thanks for the fix!