Improved entity updating

This commit is contained in:
2025-12-22 00:18:13 +01:00
parent fc5e8ceeee
commit 6fe96d41a2
5 changed files with 164 additions and 77 deletions

View File

@@ -142,7 +142,7 @@ public class Searchdomain
Probmethods.probMethodDelegate? probmethod = Probmethods.GetMethod(probmethodString);
if (datapoint_unassigned.TryGetValue(id, out List<Datapoint>? datapoints) && probmethod is not null)
{
Entity entity = new(attributes, probmethod, datapoints, name)
Entity entity = new(attributes, probmethod, probmethodString, datapoints, name)
{
id = id
};