Tagged Questions
9
votes
1answer
637 views
How does one gracefully merge object graphs after NHibernate StaleObjectStateException?
We are trying to combine objects after a StaleObjectStateException has been thrown to save a merged copy.
Here's our environmental situation:
List item
Multi-user system
WPF Desktop application, ...
1
vote
0answers
435 views
Fluent Nhibernate Optimistick locking not working
In my application I have set the application to use the strategy to prevent 2 different conversations to work at the same data. But is not working, I don't know why.
PROBLEM:
1) User1:
Retrive ...
3
votes
2answers
1k views
Fluent NHibernate OptimisticLock.None() causes “The string 'none' is not a valid Boolean value.”
I'm using the following mapping:
public class LoadMap : IAutoMappingOverride<Load> {
public void Override(AutoMapping<Load> mapping) {
mapping.HasMany(x => ...