HiLang 2.1.6
dotnet add package HiLang --version 2.1.6
NuGet\Install-Package HiLang -Version 2.1.6
<PackageReference Include="HiLang" Version="2.1.6" />
paket add HiLang --version 2.1.6
#r "nuget: HiLang, 2.1.6"
// Install HiLang as a Cake Addin #addin nuget:?package=HiLang&version=2.1.6 // Install HiLang as a Cake Tool #tool nuget:?package=HiLang&version=2.1.6
HiLang
HiLang is a minimal high-level language to describe the schema of a domain, taking inspiration from protobuf (.proto models) for hierarchical structures and SQL DML for entities, relations and views.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- FSharp.Core (>= 9.0.201)
- FsLexYacc (>= 11.3.0)
- FsLexYacc.Runtime (>= 11.3.0)
- Microsoft.CodeAnalysis.Analyzers (>= 3.11.0)
- Microsoft.CodeAnalysis.CSharp (>= 4.12.0)
- Nerdbank.GitVersioning (>= 3.7.115)
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 |
---|---|---|
2.1.6 | 39 | 2/15/2025 |
2.1.0 | 45 | 1/24/2025 |
2.0.0 | 46 | 1/14/2025 |
1.3.9 | 99 | 11/15/2024 |
1.3.0 | 99 | 10/5/2024 |
1.2.18 | 141 | 9/15/2024 |
1.2.16 | 122 | 9/7/2024 |
1.2.15 | 108 | 9/1/2024 |
1.2.11 | 91 | 8/6/2024 |
1.2.9 | 90 | 7/26/2024 |
1.2.8 | 119 | 7/19/2024 |
1.2.6 | 103 | 7/15/2024 |
1.2.4 | 120 | 7/4/2024 |
1.2.0 | 127 | 5/30/2024 |
1.1.37 | 112 | 5/11/2024 |
1.1.34 | 111 | 4/22/2024 |
1.1.30 | 119 | 3/24/2024 |
1.1.26 | 133 | 3/14/2024 |
1.1.23 | 133 | 2/26/2024 |
1.1.22 | 130 | 2/16/2024 |
1.1.21 | 175 | 1/11/2024 |
1.1.19 | 157 | 1/1/2024 |
1.1.17 | 145 | 12/23/2023 |
1.1.11 | 137 | 12/16/2023 |
1.1.10 | 143 | 12/6/2023 |
1.1.7 | 143 | 11/30/2023 |
1.1.5 | 131 | 11/21/2023 |
1.0.14-prerelease | 154 | 8/6/2023 |
# Overview
This release is primarily concerned with updates to match changes to .NET 9.0 with the release of Visual Studio 17.13 and related libaries. It also includes an Update to Hiperspace.Rocks to reflect similar changes to RocksDB.
The implementation of OLAP cube support has also been changed to simplify its use for client applications and allow Fact tables to be used with BI tools that cannot use the binary CubeKey, OLAP Cube Facts now include references to the dimensions. This allows the removal of BKey (Key represented as an array of bytes) that us *unhelpful* for **Hiperspace.SQL** and **JSON** serialization.
## Fact tables
Fact tables store calculated summaries of the underlying data, but aggregated for real-time access without the need to reevaluate calculations. Hiperspace Fact tables also support to store of Hierarchy of values - in this example the `sum` of transaction values are stored in the slice "20" for CustomerAccount (sum of all Transactions for an Account) and slice "3" for Customer (sum of all Transactions for a Customer). Both Customer and CustomerAccount elements have navigation reference to CustomerAccount_Fact to retrieve summaries directly.
Hiperspace OLAP doesn't just store the sum of transactions for fast read, but allows *deltas* to be added without the need for rerun a complete aggregation. The `@deltaindex` on Transaction allows only the changes within an *epoch* (transactions between the last aggregation and last update) to be selected, and `deltasum` calculates only the difference since the last time the cube was calculated - this enables real-time aggregation to be performed.
As the `CustomerAccount_Fact` table is versioned, it is possible to view the history of a cube-slice (in a graph) and calculate regression analysis without the need to drill-down to detail rows.