How do I escape keyword conflicts when NHibernate generates my column names using FluentNHibernate?
NHibernate generated this for me and "Key" is a conflict.
create table Setting (
Key NVARCHAR(MAX) not null,
Value NVARCHAR(MAX) null,
primary key (Key)
)