Hello,

is there a fluent way to map a non exposed field?

public class MyKeptSecret : ISecret {

   private Secret secret; // map me!

   public MySecret(secret s){
      secret = s;
   }

   public string ISecret.Tell() {
      return secret.Tell();
   }

}

with something like

References<Secret>("secret")
.AsCamelCaseField();

?

-- 
Jan

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Fluent NHibernate" group.
To post to this group, send email to fluent-nhibernate@googlegroups.com
To unsubscribe from this group, send email to 
fluent-nhibernate+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/fluent-nhibernate?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to