diff --git a/src/MusicStore/Models/MusicStoreContext.cs b/src/MusicStore/Models/MusicStoreContext.cs index a7d49c414f..63c7a67713 100644 --- a/src/MusicStore/Models/MusicStoreContext.cs +++ b/src/MusicStore/Models/MusicStoreContext.cs @@ -1,8 +1,8 @@ using Microsoft.AspNet.ConfigurationModel; using Microsoft.Data.Entity; using Microsoft.Data.Entity.Metadata; -using Microsoft.Data.InMemory; -using Microsoft.Data.SqlServer; +using Microsoft.Data.Entity.InMemory; +using Microsoft.Data.Entity.SqlServer; using System; namespace MusicStore.Models diff --git a/src/MusicStore/Models/SampleData.cs b/src/MusicStore/Models/SampleData.cs index 9636e2ad75..1fcf788b0a 100644 --- a/src/MusicStore/Models/SampleData.cs +++ b/src/MusicStore/Models/SampleData.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.Data.Entity; -using Microsoft.Data.SqlServer; +using Microsoft.Data.Entity.SqlServer; using Microsoft.AspNet.DependencyInjection; namespace MusicStore.Models diff --git a/src/MusicStore/Startup.cs b/src/MusicStore/Startup.cs index da9eb7ed14..2234a6de29 100644 --- a/src/MusicStore/Startup.cs +++ b/src/MusicStore/Startup.cs @@ -14,8 +14,8 @@ using Microsoft.AspNet.RequestContainer; using Microsoft.AspNet.Routing; using Microsoft.AspNet.Security.Cookies; using Microsoft.Data.Entity; -using Microsoft.Data.InMemory; -using Microsoft.Data.SqlServer; +using Microsoft.Data.Entity.InMemory; +using Microsoft.Data.Entity.SqlServer; using Microsoft.Net.Runtime; using MusicStore.Logging; using MusicStore.Models; diff --git a/src/MusicStore/project.json b/src/MusicStore/project.json index 37be3af6dc..18a6014936 100644 --- a/src/MusicStore/project.json +++ b/src/MusicStore/project.json @@ -26,10 +26,10 @@ "Microsoft.AspNet.Identity.InMemory": "0.1-alpha-*", "Microsoft.AspNet.Identity.Security": "0.1-alpha-*", "Microsoft.Data.Entity": "0.1-alpha-*", - "Microsoft.Data.Relational": "0.1-alpha-*", - "Microsoft.Data.SqlServer": "0.1-alpha-*", - "Microsoft.Data.InMemory": "0.1-alpha-*", - "Microsoft.Data.Migrations": "0.1-alpha-*", + "Microsoft.Data.Entity.Relational": "0.1-alpha-*", + "Microsoft.Data.Entity.SqlServer": "0.1-alpha-*", + "Microsoft.Data.Entity.InMemory": "0.1-alpha-*", + "Microsoft.Data.Entity.Migrations": "0.1-alpha-*", "Microsoft.AspNet.Diagnostics": "0.1-alpha-*", "Microsoft.AspNet.Hosting": "0.1-alpha-*", "Microsoft.AspNet.Server.WebListener": "0.1-alpha-*",