Skip to content

Commit

Permalink
[fix] formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
i4004 committed May 25, 2024
1 parent ce726c3 commit 8abb173
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/Simplify.FluentNHibernate/ConfigurationExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using FluentNHibernate.Cfg.Db;
using FluentNHibernate.Conventions;
using Microsoft.Extensions.Configuration;
using NHibernate.Dialect;
using NHibernate.Driver;
using Pas.Database.Session.Dialects;
using Simplify.FluentNHibernate.Dialects;
Expand Down Expand Up @@ -542,7 +541,7 @@ private static void InitializeFromConfigMsSqlMicrosoftDriver(FluentConfiguration
PerformCommonInitialization(fluentConfiguration, settings.ShowSql, settings.ShowSqlOutputType);
}

#endregion MS SQL Microsoft
#endregion MS SQL Microsoft Driver

#region PostgreSQL

Expand Down
4 changes: 4 additions & 0 deletions src/Simplify.FluentNHibernate/Dialects/MsSqlDialect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,22 @@ public enum MsSqlDialect
/// The MS SQL 2000 dialect
/// </summary>
MsSql2000,

/// <summary>
/// The MS SQL 2005 dialect
/// </summary>
MsSql2005,

/// <summary>
/// The MS SQL 2008 dialect
/// </summary>
MsSql2008,

/// <summary>
/// The MS SQL 2012 dialect
/// </summary>
MsSql2012,

/// <summary>
/// The MS SQL 7 dialect
/// </summary>
Expand Down
1 change: 1 addition & 0 deletions src/Simplify.FluentNHibernate/Dialects/OracleDialect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public enum OracleDialect
/// The Oracle 9i dialect
/// </summary>
Oracle9i,

/// <summary>
/// The Oracle 10g dialect
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ public class PostgreSql83ZDialect : PostgreSQL83Dialect
/// Initialize PostgreSql83WithUtcDialect
/// </summary>
public PostgreSql83ZDialect() => RegisterColumnType(DbType.DateTime, "timestamptz");
}
}
4 changes: 4 additions & 0 deletions src/Simplify.FluentNHibernate/Dialects/PostgreSqlDialect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,22 @@ public enum PostgreSqlDialect
/// The Standard dialect
/// </summary>
Standard,

/// <summary>
/// The PostgreSQL 8.1 dialect
/// </summary>
PostgreSQL81,

/// <summary>
/// The PostgreSQL 8.2 dialect
/// </summary>
PostgreSQL82,

/// <summary>
/// The PostgreSQL 8.3 dialect
/// </summary>
PostgreSQL83,

/// <summary>
/// The PostgreSQL 8.3 dialect using timestamptz DateTime format
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Simplify.FluentNHibernate/SessionFactoryBuilderBase.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using Microsoft.Extensions.Configuration;
using FluentNHibernate.Cfg;
using Microsoft.Extensions.Configuration;
using NHibernate;

namespace Simplify.FluentNHibernate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public enum ShowSqlOutputType
/// The Console output
/// </summary>
Console,

/// <summary>
/// The Trace out[ut]
/// </summary>
Expand Down
1 change: 0 additions & 1 deletion src/Simplify.Repository.EntityFramework/UnitOfWork.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ namespace Simplify.Repository.EntityFramework;
public class UnitOfWork<T>(DbContext context) : IUnitOfWork
where T : DbContext
{

/// <summary>
/// Gets the session.
/// </summary>
Expand Down

0 comments on commit 8abb173

Please sign in to comment.