Reputation: 2564
My application made in ASP.Net core is using EF 6.1. I keep receiving warning message from App Insights while n-log does not show anything unusual. What is this 208 code from SQL and why does App Insights log this as exception?
Upvotes: 6
Views: 3426
Reputation: 311
According to a list of messages (SELECT * FROM SYS.MESSAGES) the exception you get is "Invalid object name". Check the spelling or default schema or schema name.
Upvotes: 3