I don't see any mention of this in the documentation, but I've got a property named 'Schema' on my Table class. On SQL Server 2005 (and maybe other versions) schema is a keyword so I have to map the property as:
Code:
<property name="Schema" column="[Schema]" length="256" not-null="true" />
Is the dialect supposed to fix that sort of stuff for us or will [Schema] work for all engines? I don't know if that's how mysql escapes keywords for instance. (I'm using the 1.2 alpha build, so didn't know if this might be a bug). Thanks in advance.