This commit is contained in:
Pilzinsel64
2025-07-31 06:14:42 +02:00
parent 876f42c59e
commit 231546facd
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ public class JsonDataManager(JsonDataContainer container) : DataManager
protected override IQueryable<T> GetEntitySet<T>() protected override IQueryable<T> GetEntitySet<T>()
{ {
return container.Set<T>(false).AsQueryable(); return container.Set<T>(true).AsQueryable();
} }
protected override void RemoveEntity<T>(T obj) protected override void RemoveEntity<T>(T obj)

View File

@@ -5,7 +5,7 @@
<LangVersion>latest</LangVersion> <LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>annotations</Nullable> <Nullable>annotations</Nullable>
<Version>2.4.1</Version> <Version>2.4.2</Version>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>