We are working with a legacy database that uses SQL server uniqueidentifier columns for concurrency hence we need to use a Guid as a version column. Any idea how we could achieve this in NHibernate?

We're currently defining our mapping using Fluent NHibernate as a Guid typed property called ConcurrencyId using this snippet

Version(x => x.ConcurrencyId)

This results in the following error when creating a session

System.InvalidCastException : Unable to cast object of type 'NHibernate.Type.GuidType' to type 'NHibernate.Type.IVersionType'.

Any ideas on how this could be done, fluently or otherwise would be appreciated. We're happy to hack the source if it can be made to work.

link|improve this question

67% accept rate
1  
What happens to the guid when the next version is generated? Increase it with one byte on the end? Is Guid.empty unsaved? – Paco Nov 9 '10 at 15:40
I imagine you'd create a new Guid? Kind of like timestamp data type. – dotjoe Nov 10 '10 at 0:45
feedback

2 Answers

up vote 2 down vote accepted

You could try implementing a custom type implementing NHibernate.UserTypes.IUserVersionType. (I think this suggestion may pertain to a newer version of NHibernate than you are using.)

link|improve this answer
This works with FluentNHibernate 1.1. I've posted the code on my blog alexlea.me/2010/11/using-guid-as-version-column-in.html. Thanks! – Alex Nov 12 '10 at 18:31
Cheers, and thanks for the mention in your blog post! – yfeldblum Nov 12 '10 at 19:24
feedback

Check this...

http://ayende.com/Blog/archive/2009/04/15/nhibernate-mapping-concurrency.aspx

and the docs for the version property

http://www.nhforge.org/doc/nh/en/index.html#mapping-declaration-version

Looks like you can't use a Guid for this. Maybe just map it as a property and handle the version checks yourself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.