I think you have to call : orm.PersistentProperty<Person>(p => p.NombreFonetico); from ObjectRelationalMapper
(not sure, I am not using conform at the moment) 2011/1/20 Quicoli <[email protected]> > Friends, its me again. > > I have this property in my class: > > public string NomeFonetico > { > get > { > return Nome != null ? Fonetico.Fonetiza(Nome) : null; > } > } > > And I'm mapping it like this > > c.Property(p=> p.NomeFonetico, pm => pm.Access(Accessor.ReadOnly)); > > But I think it is not right, because column is not created in database > when a I run a createschema test. > > Is that sintaxe right? > > -- > You received this message because you are subscribed to the Google Groups > "nhusers" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<nhusers%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/nhusers?hl=en. > > -- You received this message because you are subscribed to the Google Groups "nhusers" 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/nhusers?hl=en.
