Skip to content

Commit

Permalink
#419 Do same to EF.Core
Browse files Browse the repository at this point in the history
  • Loading branch information
sjh37 committed May 11, 2018
1 parent e30f751 commit e094923
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Generator/DatabaseReaders/SqlServerCeDatabaseReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ protected override string GetStoredProcedureParameterDbType(string sqlType)
break;

case "decimal":
case "numeric":
sysType = "Decimal";
break;

Expand Down
1 change: 1 addition & 0 deletions Generator/DatabaseReaders/SqlServerDatabaseReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -859,6 +859,7 @@ protected override string GetStoredProcedureParameterDbType(string sqlType)
break;

case "decimal":
case "numeric":
sysType = "Decimal";
break;

Expand Down

0 comments on commit e094923

Please sign in to comment.