From de4fb94bf1eae4d6cb4c57bad9b8605498e62e3d Mon Sep 17 00:00:00 2001 From: Arthur Vickers Date: Tue, 30 Jun 2015 10:59:28 -0700 Subject: [PATCH] React to EF namespace changes --- src/MusicStore.Spa/Models/SampleData.cs | 2 +- src/MusicStore/Models/SampleData.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MusicStore.Spa/Models/SampleData.cs b/src/MusicStore.Spa/Models/SampleData.cs index a877b32b0e..f7a6c0b009 100644 --- a/src/MusicStore.Spa/Models/SampleData.cs +++ b/src/MusicStore.Spa/Models/SampleData.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Identity.EntityFramework; using Microsoft.Data.Entity; -using Microsoft.Data.Entity.Relational; +using Microsoft.Data.Entity.Storage; using Microsoft.Framework.DependencyInjection; using Microsoft.Framework.OptionsModel; using MusicStore.Spa; diff --git a/src/MusicStore/Models/SampleData.cs b/src/MusicStore/Models/SampleData.cs index 4c15996418..c9e8b4c603 100644 --- a/src/MusicStore/Models/SampleData.cs +++ b/src/MusicStore/Models/SampleData.cs @@ -5,7 +5,7 @@ using System.Security.Claims; using System.Threading.Tasks; using Microsoft.AspNet.Identity; using Microsoft.Data.Entity; -using Microsoft.Data.Entity.Relational; +using Microsoft.Data.Entity.Storage; using Microsoft.Framework.Configuration; using Microsoft.Framework.DependencyInjection; using Microsoft.Framework.Runtime;