Similar to how we handle float, we could use REAL in the database for these values.
Contributor guide
Tech stack
csharpsqlite
Domain
database
Issue type
feature
DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
2
Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
1-3 hours
Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
stale
ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
clear
Prerequisites
Understand Half data typeFamiliarity with EF Core SQLite provider
Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
70
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.
Microsoft.Data.Sqlite: Support Half · dotnet/efcore#30931 | Good First Issue