From 9a7072e931914e4bae6dea4f942118aefce00e6f Mon Sep 17 00:00:00 2001 From: Jonathan McCaffrey Date: Sat, 16 Apr 2022 19:58:33 -0400 Subject: [PATCH] Removing Entity Framework --- Components/_Imports.razor | 1 - IGP/IGP.csproj | 1 - IGP/_Imports.razor | 1 - Services/Development/NoteService.cs | 7 ------- Services/Services.csproj | 1 - 5 files changed, 11 deletions(-) diff --git a/Components/_Imports.razor b/Components/_Imports.razor index 91c027e..cf67149 100644 --- a/Components/_Imports.razor +++ b/Components/_Imports.razor @@ -2,7 +2,6 @@ @using Microsoft.AspNetCore.Components.Routing @using Microsoft.AspNetCore.Components.Web @using Microsoft.AspNetCore.Components.Web.Virtualization -@using Microsoft.EntityFrameworkCore @using Microsoft.JSInterop @using Model.Feedback @using Model.Website diff --git a/IGP/IGP.csproj b/IGP/IGP.csproj index b4fa8e5..4282b55 100644 --- a/IGP/IGP.csproj +++ b/IGP/IGP.csproj @@ -37,7 +37,6 @@ - diff --git a/IGP/_Imports.razor b/IGP/_Imports.razor index 43dffb0..41f4207 100644 --- a/IGP/_Imports.razor +++ b/IGP/_Imports.razor @@ -33,7 +33,6 @@ @using Microsoft.AspNetCore.Components.Web @using Microsoft.AspNetCore.Components.Web.Virtualization @using Microsoft.AspNetCore.Components.WebAssembly.Http -@using Microsoft.EntityFrameworkCore @using Microsoft.Extensions.Localization @using Microsoft.JSInterop @using Model.Chart diff --git a/Services/Development/NoteService.cs b/Services/Development/NoteService.cs index 7c1ac83..91dbf26 100644 --- a/Services/Development/NoteService.cs +++ b/Services/Development/NoteService.cs @@ -1,13 +1,6 @@ using System.Net.Http.Json; using Model.Notes; -#if NO_SQL - -#else -using Contexts; -using Microsoft.EntityFrameworkCore; -#endif - namespace Services.Development; public class NoteService : INoteService diff --git a/Services/Services.csproj b/Services/Services.csproj index 48f7133..31e5733 100644 --- a/Services/Services.csproj +++ b/Services/Services.csproj @@ -19,7 +19,6 @@ -