I\'ve read that using a back tick ` should allow for using of reserved words. I\'m using SQL Server and Fluent NHibernate and have a column name \"File\". If I map it wi
You need to put ` on both sides, like this:
"`File`"
As @Astaar says, the full syntax is:
Map(x => x.File).Column("`File`");