You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ADDED: Is it possible to avoid cloning objects and just to reuse references? #50
You can globally disable cloning object with the following code:
NMemory.NMemoryManager.DisableObjectCloning=true;
Some side effects could happen, such as when using with a transaction (we cannot rollback as the object reference is used and no longer a new instance)