From: <dar...@us...> - 2009-03-14 14:03:51
|
Revision: 4130 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4130&view=rev Author: darioquintana Date: 2009-03-14 14:03:03 +0000 (Sat, 14 Mar 2009) Log Message: ----------- breaking change reverted, now everyone user can configure PrimaryKeyString in they dialect. Modified Paths: -------------- trunk/nhibernate/src/NHibernate/Dialect/MsSql2005Dialect.cs Modified: trunk/nhibernate/src/NHibernate/Dialect/MsSql2005Dialect.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Dialect/MsSql2005Dialect.cs 2009-03-14 05:09:48 UTC (rev 4129) +++ trunk/nhibernate/src/NHibernate/Dialect/MsSql2005Dialect.cs 2009-03-14 14:03:03 UTC (rev 4130) @@ -258,14 +258,6 @@ get { return false; } } - /// <summary> - /// Sql Server 2005 defaults to creating a clustered primary key, which is typically undesirable. - /// </summary> - public override string PrimaryKeyString - { - get { return base.PrimaryKeyString + " nonclustered"; } - } - /// <summary> /// This specialized string tokenizier will break a string to tokens, taking /// into account single quotes, parenthesis and commas and [ ] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |