Mapeamento de propriedade privada com nhibernate fluente

Estou recebendo o mapeamento de exceção de uma propriedade privada.Esta é a situação: eu tenho isso em Entity.cs: privat int m_Inactive;

e em EntityMap.cs eu tenho:

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

Mas eu recebo este erro:

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

Qual seria a razão?

Obrigado.

questionAnswers(2)

yourAnswerToTheQuestion