Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 91b2a47

Browse files
committed
Corrected UpperCaseNamingStrategy inheritance
UpperCaseNamingStrategy methods should override methods from base class.
1 parent c78a6f6 commit 91b2a47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceStack.OrmLite/UpperCaseNamingStrategy.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ namespace ServiceStack.OrmLite
77
{
88
public class UpperCaseNamingStrategy : OrmLiteNamingStrategyBase
99
{
10-
public virtual string GetTableName(string name)
10+
public override string GetTableName(string name)
1111
{
1212
return name.ToUpper();
1313
}
1414

15-
public virtual string GetColumnName(string name)
15+
public override string GetColumnName(string name)
1616
{
1717
return name.ToUpper();
1818
}

0 commit comments

Comments
 (0)