From: <fab...@us...> - 2011-06-17 12:06:02
|
Revision: 5941 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5941&view=rev Author: fabiomaulo Date: 2011-06-17 12:05:56 +0000 (Fri, 17 Jun 2011) Log Message: ----------- Fix NH-2770 Modified Paths: -------------- trunk/nhibernate/src/NHibernate/Cfg/Loquacious/DbIntegrationConfiguration.cs trunk/nhibernate/src/NHibernate/Cfg/Loquacious/IDbIntegrationConfiguration.cs trunk/nhibernate/src/NHibernate.Test/GhostProperty/GhostPropertyFixture.cs Modified: trunk/nhibernate/src/NHibernate/Cfg/Loquacious/DbIntegrationConfiguration.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Cfg/Loquacious/DbIntegrationConfiguration.cs 2011-06-17 12:03:42 UTC (rev 5940) +++ trunk/nhibernate/src/NHibernate/Cfg/Loquacious/DbIntegrationConfiguration.cs 2011-06-17 12:05:56 UTC (rev 5941) @@ -304,7 +304,7 @@ set { configuration.SetProperty(Environment.ShowSql, value.ToString().ToLowerInvariant()); } } - public bool LogFormatedSql + public bool LogFormattedSql { set { configuration.SetProperty(Environment.FormatSql, value.ToString().ToLowerInvariant()); } } Modified: trunk/nhibernate/src/NHibernate/Cfg/Loquacious/IDbIntegrationConfiguration.cs =================================================================== --- trunk/nhibernate/src/NHibernate/Cfg/Loquacious/IDbIntegrationConfiguration.cs 2011-06-17 12:03:42 UTC (rev 5940) +++ trunk/nhibernate/src/NHibernate/Cfg/Loquacious/IDbIntegrationConfiguration.cs 2011-06-17 12:05:56 UTC (rev 5941) @@ -36,7 +36,7 @@ void Dialect<TDialect>() where TDialect : Dialect.Dialect; Hbm2DDLKeyWords KeywordsAutoImport { set; } bool LogSqlInConsole { set; } - bool LogFormatedSql { set; } + bool LogFormattedSql { set; } void ConnectionProvider<TProvider>() where TProvider : IConnectionProvider; void Driver<TDriver>() where TDriver : IDriver; Modified: trunk/nhibernate/src/NHibernate.Test/GhostProperty/GhostPropertyFixture.cs =================================================================== --- trunk/nhibernate/src/NHibernate.Test/GhostProperty/GhostPropertyFixture.cs 2011-06-17 12:03:42 UTC (rev 5940) +++ trunk/nhibernate/src/NHibernate.Test/GhostProperty/GhostPropertyFixture.cs 2011-06-17 12:05:56 UTC (rev 5941) @@ -24,7 +24,7 @@ protected override void Configure(Cfg.Configuration configuration) { - configuration.DataBaseIntegration(x=> x.LogFormatedSql = false); + configuration.DataBaseIntegration(x=> x.LogFormattedSql = false); } protected override void OnSetUp() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |