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].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to