Exemple #1
0
 private void FieldNotFound()
 {
     if (_classMetadata.HoldsAnyClass())
     {
         // retry finding the field on reading the value
         _fieldMetadata = null;
     }
     else
     {
         // we can't get a value for the field, comparisons should definitely run against null
         _fieldMetadata = new NullFieldMetadata();
     }
     _handlerVersion = HandlerRegistry.HandlerVersion;
 }