Is this supposed to take in consideration that my property does not
have a setter and is mapped to use field.lowercase-underscore
strategy.
If I have an attribute like this

protected string _myAtt;
public string MyAtt;
{
  get { return _myAtt; }
}

should

_spec.CheckProperty(x=> x.MyAtt, _myEntity.MyAtt) work? Right now it
throws an error that it cannot set "property" not a field

FluentNHibernate.Testing.PersistenceSpecification`1.PropertyValue.SetValue
(Object target)

which leads me to believe that it is not checking the field. Maybe I
need to add CheckField method ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Fluent NHibernate" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/fluent-nhibernate?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to