Mapowanie własności prywatnej z płynnym nhibernate

Otrzymuję mapowanie wyjątków własności prywatnej.To jest sytuacja: mam to w Entity.cs: privat int m_Inactive;

iw EntityMap.cs mam:

Map(x => Reveal.Property<Entity>("m_Inactive")).ColumnName.("INACTIVE"); 

Ale dostaję ten błąd:

System.Reflection.TargetInvocationException: Exception has been thrown 
by 
the target of an invocation. --->  System.ArgumentException: Not a member access 

Co może być przyczyną?

Dzięki.

questionAnswers(2)

yourAnswerToTheQuestion