I have enable EF 6 Log Functionality into my application:
// Add loggin (DEVELOPMENT ONLY)
DbContext.Database.Log = logInfo => System.Diagnostics.Debug.WriteLine(logInfo);
Its working fine but I see like repeated SQL Queries in my Console, so I opened a SQL Profiler and saw the following:
There is a SQL: BatchStarting and SQL: BatchCompleted any clue what does that mean? Is that correct?