0

I'm using this EF framework trying to learn it with the code first approach. I've following a couple articles. My question is where is my data base I've looked at this article HERE but still can not fid the db. I'm using VS 2012 and didnt specify the connection string so it should be in the local instance of the SQL express is my understanding with the fully qualified DB context name?

Here is my context class :

namespace EntityFrameWorkPluralSight
{
  class Context : DbContext
  {
    public DbSet<Blog> Blogs { get; set; }
    public DbSet<Post> Posts { get; set; }

  }
}

enter image description here

Thanks for the help.

Community
  • 1
  • 1
Troy Bryant
  • 994
  • 8
  • 29
  • 60

1 Answers1

1

LocalDB was introduced in SQL Server 2012 CTP3. It’s basically a new version of SQL Express, with same functionality, dedicated to developers.

See here for more info :

SQL Server (localdb)\v11.0 explained

Community
  • 1
  • 1
Philip Stuyck
  • 7,344
  • 3
  • 28
  • 39
  • thanks pointed me in the right direction took lot of reading to figure out what was going on and additionally my connection using management studio was incorrect https://social.msdn.microsoft.com/Forums/sqlserver/en-US/b75bef7e-13f3-4658-8d43-9df12ab4c320/connecting-localdb-using-sql-server-management-studio-express?forum=sqlexpress – Troy Bryant Feb 12 '15 at 17:16