Homura 14.0.1
dotnet add package Homura --version 14.0.1
NuGet\Install-Package Homura -Version 14.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Homura" Version="14.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Homura" Version="14.0.1" />
<PackageReference Include="Homura" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Homura --version 14.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Homura, 14.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Homura@14.0.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Homura&version=14.0.1
#tool nuget:?package=Homura&version=14.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Homura - C# ORM
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Dapper.StrongName (>= 2.1.66)
- NLog (>= 6.0.7)
- Prism.Core (>= 9.0.537)
- ReactiveProperty (>= 9.8.0)
- System.Linq.AsyncEnumerable (>= 10.0.1)
-
net9.0
- Dapper.StrongName (>= 2.1.66)
- NLog (>= 6.0.7)
- Prism.Core (>= 9.0.537)
- ReactiveProperty (>= 9.8.0)
- System.Linq.AsyncEnumerable (>= 10.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 14.0.1 | 85 | 3/12/2026 |
| 14.0.0 | 80 | 3/11/2026 |
| 13.0.0 | 195 | 12/23/2025 |
| 12.0.1 | 367 | 11/21/2025 |
| 11.1.1 | 397 | 4/7/2024 |
| 11.1.0 | 230 | 4/7/2024 |
| 11.0.1 | 302 | 1/4/2024 |
| 11.0.0 | 226 | 1/2/2024 |
| 10.0.1 | 283 | 11/17/2023 |
| 9.10.0 | 227 | 11/5/2023 |
| 9.9.0 | 217 | 11/1/2023 |
| 9.8.5 | 270 | 8/17/2023 |
| 9.8.4 | 232 | 8/17/2023 |
| 9.8.3 | 260 | 8/17/2023 |
| 9.8.2 | 256 | 8/14/2023 |
| 9.8.1 | 260 | 8/14/2023 |
| 9.8.0 | 234 | 8/14/2023 |
| 9.7.1 | 277 | 8/6/2023 |
| 9.7.0 | 259 | 8/5/2023 |
| 9.6.0 | 273 | 8/5/2023 |
Loading failed
v14.0.1: Performance optimization for Insert/Update operations.
- Source Generator now generates Insert/Update fast path code, bypassing query builder chain
- Cache PropertyGetter delegates and Table column metadata to avoid repeated reflection
- Reuse DbCommand and parameters in InsertBulkAsync/UpdateBulkAsync
- Add BeginTransactionAsync to Dao, skip unnecessary Table.Clone
- Txn-based Insert/Update: ~3.4x faster, ~85% less memory allocation (1000 records)