jjaskulowski
jjaskulowski

Reputation: 2564

App Insights reporting result code 208 for SQL dependency

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?

exception screen

Upvotes: 6

Views: 3426

Answers (1)

Natalia
Natalia

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

Related Questions