From 503c69e553198b6d98963974ea3c3d022ed8a00b Mon Sep 17 00:00:00 2001 From: Corentin R <76619184+Koroh63@users.noreply.github.com> Date: Wed, 15 Mar 2023 17:05:35 +0100 Subject: [PATCH] fix :bug: --- Sources/EntityFramework/Manager/EFDataManager.Champions.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/EntityFramework/Manager/EFDataManager.Champions.cs b/Sources/EntityFramework/Manager/EFDataManager.Champions.cs index bb87e6f..9bfd098 100644 --- a/Sources/EntityFramework/Manager/EFDataManager.Champions.cs +++ b/Sources/EntityFramework/Manager/EFDataManager.Champions.cs @@ -58,10 +58,11 @@ namespace EntityFramework.Manager public Task> GetItemsByName(string substring, int index, int count, string? orderingPropertyName = null, bool descending = false) { + throw new NotImplementedException(); using (var context = new LoLDBContextWithStub()) { IEnumerable champ = context.Champions.Where(c => c.Name.Contains(substring)); - return champ.ToList().Where(l => l.toCh) + //return champ.ToList().Where(l => l.toCh) } }