I am using Asp.Net boilerplate framework, I created a table in database by Code-First approach. Now i want to get Records from that table but applying query like this returning empty data. Why?
MyAppDbContext db = new MyAppDbContext();
var list = db.NewTables.ToList();
But List is returned as empty while table contains data actually.