2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 14:38:43 +00:00
This commit is contained in:
2026-05-26 16:18:57 +03:00
parent e4a54ffbe8
commit a91fc7d262
29 changed files with 206 additions and 148 deletions
@@ -54,7 +54,7 @@ public class EntityStore : IStore
Dictionary<string, EntityTypeInfo> TypesByName = new Dictionary<string, EntityTypeInfo>();
internal Dictionary<Type, EntityTypeInfo> TypesByType = new Dictionary<Type, EntityTypeInfo>();
[Attribute]
//[Attribute]
public Func<DbContext> Getter { get; set; }
@@ -223,9 +223,9 @@ public class EntityStore : IStore
internal DbContextOptions Options { get; set; }
public AsyncReply<bool> Trigger(ResourceOperation trigger)
public AsyncReply<bool> Handle(ResourceOperation operation, IResourceContext? context = null)
{
if (trigger == ResourceOperation.Initialize)// SystemInitialized && DbContext != null)
if (operation == ResourceOperation.Initialize)// SystemInitialized && DbContext != null)
{
if (Getter == null)
+11 -11
View File
@@ -110,7 +110,7 @@ public class MongoDBStore : IStore
}
[Export]
public AsyncReply<bool> Remove(IResource resource)
public AsyncReply<bool> Remove(IResource resource)
{
var objectId = resource.Instance.Variables["objectId"].ToString();
var filter = Builders<BsonDocument>.Filter.Eq("_id", new BsonObjectId(new ObjectId(objectId)));
@@ -515,16 +515,16 @@ public class MongoDBStore : IStore
throw new NotImplementedException();
}
[Attribute]
//[Attribute]
public string Connection { get; set; }
[Attribute]
//[Attribute]
public string Collection { get; set; }
[Attribute]
//[Attribute]
public string Database { get; set; }
public AsyncReply<bool> Trigger(ResourceOperation trigger)
{
if (trigger == ResourceOperation.Initialize)
public AsyncReply<bool> Handle(ResourceOperation operation, IResourceContext context = null)
{
if (operation == ResourceOperation.Initialize)
{
var collectionName = Collection ?? "resources";
@@ -574,7 +574,7 @@ public class MongoDBStore : IStore
return new AsyncReply<bool>(true);
}
else if (trigger == ResourceOperation.Terminate)
else if (operation == ResourceOperation.Terminate)
{
// save all resources
foreach (var resource in resources.Values)
@@ -855,7 +855,7 @@ public class MongoDBStore : IStore
}
}
public AsyncReply<bool> AddChild(IResource resource, IResource child)
{
@@ -887,9 +887,9 @@ public class MongoDBStore : IStore
throw new NotImplementedException();
}
public AsyncReply<bool> Move(IResource resource, string newPath)
{
throw new NotImplementedException();