How do you prevent an update (delete) via business processors?
I found the CanRemove property in DeltaChangeEventArgs and specified that in my BP
if (e.DeltaChange.Type == RemObjects.DataAbstract.ChangeType.Delete)
{
int oldKey = (int)e.DeltaChange.OldValues[fieldnameKey];
if (recordIsRefernced(oldKey))
e.CanRemove=false;
However the record still got deleted
I searched for CanRemove in the .cs files in C:\Users\Public\Documents\RemObjects Samples\Data Abstract for .NET\C# but found nothing
I searched for CanRemove in the docs but I find a lot of irrelevant (non C# info)