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

Commit c796338

Browse files
committed
Merge pull request #405 from madaleno/master
Corrected UpperCaseNamingStrategy inheritance
2 parents c78a6f6 + 91b2a47 commit c796338

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)