I am looking at NHibernate mapping, and we are in a situation where we need to specify a mapping in a specific column. Preferably during display.
The idea is that after NHibernate creates the circuit, it will look something like this:
CREATE TABLE [dbo].[Foo] ( [Bar] NVARCHAR (128) NULL **collate sql_latin1_general_cp1_cs_as**, [BarTwo] NVARCHAR (max) );
I am currently using Fluent, but an xml solution will be fine.
source share