, Length , , .
NVARCHAR(MAX). Length, NHibernate , 4096 .
( Mapping-By-Code, 2017 : -)
classMapper.Property(
tickerFeed => tickerFeed.StaticTickerText,
propertyMapper =>
{
propertyMapper.Column("StaticTickerText");
propertyMapper.Length(int.MaxValue);
}
);
, , IPropertyMapper.Type, , .
classMapper.Property(
tickerFeed => tickerFeed.StaticTickerText,
propertyMapper =>
{
propertyMapper.Column("StaticTickerText");
propertyMapper.Type(NHibernateUtil.StringClob);
}
);
We are done with the option propertyMapper.Typeas it is more explicit.
source
share