-
Couldn't load subscription status.
- Fork 316
Improved decimal scale conversion #470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
DavoudEshtehari
merged 6 commits into
dotnet:master
from
DavoudEshtehari:ScaledDecimalParameterImprovement
Apr 8, 2020
Merged
Improved decimal scale conversion #470
DavoudEshtehari
merged 6 commits into
dotnet:master
from
DavoudEshtehari:ScaledDecimalParameterImprovement
Apr 8, 2020
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JRahnama
reviewed
Mar 17, 2020
src/Microsoft.Data.SqlClient/netfx/src/Microsoft.Data.SqlClient.csproj
Outdated
Show resolved
Hide resolved
JRahnama
reviewed
Mar 17, 2020
src/Microsoft.Data.SqlClient/netfx/src/Microsoft/Data/SqlClient/SqlConnectionStringBuilder.cs
Outdated
Show resolved
Hide resolved
JRahnama
reviewed
Mar 17, 2020
src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/ParameterTest/TvpTest.cs
Outdated
Show resolved
Hide resolved
d3dc447 to
6cf9b90
Compare
David-Engel
reviewed
Mar 18, 2020
doc/snippets/Microsoft.Data.SqlClient/SqlConnectionStringBuilder.xml
Outdated
Show resolved
Hide resolved
doc/snippets/Microsoft.Data.SqlClient/SqlConnectionStringBuilder.xml
Outdated
Show resolved
Hide resolved
For SqlParameter and SqlBulckCopy
6cf9b90 to
d7d8e22
Compare
Co-Authored-By: David Engel <[email protected]>
Co-Authored-By: David Engel <[email protected]>
8442fe3 to
878bebc
Compare
878bebc to
de3dced
Compare
David-Engel
reviewed
Mar 26, 2020
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/TdsParser.cs
Show resolved
Hide resolved
09095db to
549c62d
Compare
Changed Microsoft.Data.SqlClient.TruncateScaledDecimal to Switch.Microsoft.Data.SqlClient.TruncateScaledDecimal for unification. Merge branch 'master' of https://github.com/dotnet/SqlClient into ScaledDecimalParameterImprovement # Conflicts: # BUILDGUIDE.md
5f0d30c to
069aa9f
Compare
src/Microsoft.Data.SqlClient/netcore/src/Microsoft/Data/SqlClient/TdsParser.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/ParameterTest/TvpTest.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/ParameterTest/ParametersTest.cs
Show resolved
Hide resolved
cheenamalhotra
approved these changes
Apr 7, 2020
David-Engel
approved these changes
Apr 7, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Breaking Change 🔨
Issues/PRs that are related with breaking API changes in the driver.
Public API 🆕
Issues/PRs that introduce new APIs to the driver.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Before this change, the decimal data scale implicitly was truncated. And now, it is rounding as same as Microsoft SQL Server.
For backwards compatibility, you can add the 'Switch.Microsoft.Data.SqlClient.TruncateScaledDecimal' switch inside the AppContext with the value 'true'.