Skip to content

Commit

Permalink
Minor refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
NimaAra committed Dec 24, 2017
1 parent 9b11e8e commit 4d027f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Easy.Storage.Common/GenericSQLDialect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ private GenericSQLDialect() : base(DialectType.Generic) { }
/// </summary>
public static GenericSQLDialect Instance { get; } = new GenericSQLDialect();

internal override string GetPartialInsertQuery<T>(Table table, object item) => throw new System.NotImplementedException();
internal override string GetPartialInsertQuery<T>(Table table, object item)
=> throw new System.NotImplementedException();
}
}

0 comments on commit 4d027f0

Please sign in to comment.