-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Add support for BigInteger, Int128, and UInt128 in SqliteValueBinder #37483
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
Conversation
MaikyOzr
commented
Jan 11, 2026
- Bind Int128, UInt128, and BigInteger parameters as TEXT in SQLite.
- Add provider-level tests to verify correct binding of these large numeric types.
- This change only affects parameter binding; reading values back still returns string.
- I've read the guidelines for contributing and seen the walkthrough
- I've posted a comment on an issue with a detailed description of how I am planning to contribute and got approval from a member of the team
- The code builds and tests pass locally (also verified by our automated build checks)
- Commit messages follow this format:
- Tests for the changes have been added (for bug fixes / features)
- Code follows the same patterns and style as existing code in this repo
- Bind Int128, UInt128, and BigInteger parameters as TEXT in SQLite. - Add provider-level tests to verify correct binding of these large numeric types. - This change only affects parameter binding; reading values back still returns string.
@dotnet-policy-service agree |
249ae47 to
6b86657
Compare