Re: [fluent-nhib] Disallowed property names

2010-03-04 Thread James Gregory
That's an NHibernate thing. You can do one of several things... 1. Escape your column names using backticks (`), so End becomes `End`. This instructs NH to escape that column using the database specific escaping mechanism 2. Auto-escape your column names; there's a configuration setti

[fluent-nhib] Disallowed property names

2010-03-04 Thread adrianhara
Hi, I've searched a bit but haven't turned up anything, so here goes: are there any disallowed/restricted property names on the mapped entities? For example, I have a class that has a property named "End" of type "DateTime" and another one named "Start". The unit test exporting the schema ( new S