3 comments (3 comments)0 reactions (0 reactions)0 assignees (0 assignees)C#3,376 forks (3,376 forks)batch import
area-adonet-sqlitegood first issue
Repository metrics
- Stars
- 14,651 stars (14,651 stars)
- PR merge metrics
- Avg merge 23d 13h (Avg merge 23d 13h)154 merged PRs in 30d (154 merged PRs in 30d)
Description
Similar to how we handle float, we could use REAL in the database for these values.
Contributor guide
- Research direction
- The implementation should mirror how 'float' is handled in the Microsoft.Data.Sqlite provider. Look at the existing float handling code in the provider's type mapping (e.g., in the SqliteTypeMappingSource or similar). The issue suggests using REAL as the storage type for Half values. Ensure that the mapping is consistent with other floating point types and that proper conversions are added for reading and writing.
- Tech stack
- csharpsqlite
- Domain
- database
- Issue type
- Feature
- Prerequisites
- Understand Half data typeFamiliarity with EF Core SQLite provider