Tagged Questions
3
votes
1answer
769 views
fluent nhibernate automap version column
Current code in my convention:
public void Apply(FluentNHibernate.Conventions.Instances.IVersionInstance instance)
{
instance.Column("RowVersion");
instance.Not.Nullable();
...
2
votes
1answer
322 views
Business application - pessimistic concurrency using messaging
We are using messaging in a project of ours to implement pessimistic concurrency. This means that if messaging goes down (channel goes down), concurrency goes down.
Is this done in other business ...
0
votes
1answer
45 views
Solving Nhibernate concurrency issues
I am currently thinking about implementing an application with NHibernate and I would like to be able to solve concurrency issues by showing the user which fields have changed since he retrieved the ...
0
votes
0answers
51 views
Entity Framework Optimistic Concurrency Not Failing
I'm having some problems getting EF's Optimistic Concurrency(version 4.0) to fail with the following example. .Net 4.0/C#
In the database I have the following table:
Create Table Work
(
Id int ...