Hiperspace.SQL
2.5.52
Prefix Reserved
dotnet add package Hiperspace.SQL --version 2.5.52
NuGet\Install-Package Hiperspace.SQL -Version 2.5.52
<PackageReference Include="Hiperspace.SQL" Version="2.5.52" />
<PackageVersion Include="Hiperspace.SQL" Version="2.5.52" />
<PackageReference Include="Hiperspace.SQL" />
paket add Hiperspace.SQL --version 2.5.52
#r "nuget: Hiperspace.SQL, 2.5.52"
#:package Hiperspace.SQL@2.5.52
#addin nuget:?package=Hiperspace.SQL&version=2.5.52
#tool nuget:?package=Hiperspace.SQL&version=2.5.52
Package Description
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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 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. |
-
net10.0
- FSharp.Core (>= 10.1.203)
- FsLexYacc (>= 11.3.0)
- FsLexYacc.Runtime (>= 11.3.0)
- HiLang (>= 2.5.52)
- Hiperspace (>= 2.5.52)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- Microsoft.CodeAnalysis (>= 5.3.0)
- Microsoft.CodeAnalysis.Analyzers (>= 5.3.0)
- Microsoft.CodeAnalysis.CSharp (>= 5.3.0)
- Parquet.Net (>= 6.0.2)
- protobuf-net.Core (>= 3.2.56)
- System.CodeDom (>= 10.0.7)
-
net8.0
- FSharp.Core (>= 10.1.203)
- FsLexYacc (>= 11.3.0)
- FsLexYacc.Runtime (>= 11.3.0)
- HiLang (>= 2.5.52)
- Hiperspace (>= 2.5.52)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- Microsoft.CodeAnalysis (>= 5.3.0)
- Microsoft.CodeAnalysis.Analyzers (>= 5.3.0)
- Microsoft.CodeAnalysis.CSharp (>= 5.3.0)
- Parquet.Net (>= 6.0.2)
- protobuf-net.Core (>= 3.2.56)
- System.CodeDom (>= 10.0.7)
- System.Text.Json (>= 10.0.7)
-
net9.0
- FSharp.Core (>= 10.1.203)
- FsLexYacc (>= 11.3.0)
- FsLexYacc.Runtime (>= 11.3.0)
- HiLang (>= 2.5.52)
- Hiperspace (>= 2.5.52)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- Microsoft.CodeAnalysis (>= 5.3.0)
- Microsoft.CodeAnalysis.Analyzers (>= 5.3.0)
- Microsoft.CodeAnalysis.CSharp (>= 5.3.0)
- Parquet.Net (>= 6.0.2)
- protobuf-net.Core (>= 3.2.56)
- System.CodeDom (>= 10.0.7)
- System.Text.Json (>= 10.0.7)
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.5.52 | 46 | 5/9/2026 |
| 2.5.50 | 99 | 4/24/2026 |
| 2.5.47 | 100 | 4/15/2026 |
| 2.5.43 | 104 | 4/1/2026 |
| 2.5.39 | 101 | 3/20/2026 |
| 2.5.35 | 103 | 2/27/2026 |
| 2.5.33 | 113 | 2/14/2026 |
| 2.5.32 | 118 | 1/30/2026 |
| 2.5.29 | 116 | 1/17/2026 |
| 2.5.28 | 121 | 12/31/2025 |
| 2.5.26 | 204 | 12/21/2025 |
| 2.5.21 | 445 | 12/10/2025 |
| 2.5.18 | 688 | 12/3/2025 |
| 2.5.8 | 196 | 11/15/2025 |
| 2.5.2 | 231 | 11/6/2025 |
| 2.5.0 | 214 | 10/20/2025 |
| 2.4.6 | 214 | 9/23/2025 |
| 2.4.4 | 292 | 8/7/2025 |
| 2.4.2 | 182 | 7/28/2025 |
| 2.4.0 | 205 | 7/10/2025 |
https://www.cepheis.com/hiperspace/20260509
# Overview
This release is a minor update to support the presentation Cube data in Graph views with **Hiperspace.DB**, and minor updated to external references.
## Cube enhancement
### Aggregation
Hiperspace **Cubes** are declarative and stream-calculated by `Hiperspace.DB`, and viewable in graphs as a *Node* with Measures and a `TypeName` begining with `"Cube:"` (for aggregates) or `"Fact:"` for leaves within a *Cube* hierarchy. This release changes the presentation of *Cube* nodes that do not relate to any underlying facts:
* Do not return a facts collection when the `Facts` property is zero
* Do not return leaf dimensions (to a Pivot-Table) when there are no child dimensions or Measures
### Validation
Validation rules have been relaxed to create **cubes** even if it doesn't have any measures. **Cubes** provide summary information for a single or multiple *Dimensions*, but sometimes the only *measure* you need is the number of connections included:
```
entity Customer = Node () (Id : Int32) {Name : String} [TypeName = "Customer"];
entity Order = Node (), Edge (From = Customer, To = this, TypeName= "Order"), Edge_ (From = this, To = Product, TypeName = "Ordered" )
(Id : Int32) {Customer : Customer, Product : Product} [Name = Customer.Name + "-" + Product.Name, TypeName = "Order"];
entity Product = Node () (Id : Int32) {Name : String} [TypeName = "Product"];
```
[image]Sites/hiperspace/cube/spread.svg[/image]
If we're not interested in each order, a **Cube** can be used to simplify the graph to
[image]Sites/hiperspace/cube/summary1.svg[/image]
by changing the model to
```
@CubeDimension entity Customer = Node () (Id : Int32) {Name : String} [TypeName = "Customer"];
@CubeFact entity Order (Id : Int32) {Customer : Customer, Product : Product};
@CubeDimension entity Product = Node () (Id : Int32) {Name : String} [TypeName = "Product"];
```
If any of the *dimensions* to a **Cube** can be viewed as a *Node*, the `_Cube` and `_Fact` elements become a `Node` with *Drilldown* `Edge` to each dimension.
This change enables **Cube** to be used to simplify a *graph*, even when the only thing being measured is the number edges being replaced.
### View enhancement
The addition of the Cube summaries enhances the presentation of Graphs but introduced a level of detail that might be a distration for analysis. If you have a trade *cube* with dimensions {Sector, Product, Country} and drilldown to the lowest level of detail, a Graph search will include each level of detail all with *node* `"Cube:Contract_Cube"` and *edges* `"Cube:Drilldown"` and `"Cube:Dimension"`. Too enable more targeted analysis, *node* `TypeName` has been enhanced to include the number of dimensions included in each cube:
* {Sector} Cube has TypeName `"Cube:Contract_Cube:1"` with Sector->Cube (TypeName `"Cube:Drilldown:1"`
* {Sector, Product} Cube has TypeName `"Cube:Contract_Cube:2"` with Sector->Cube (TypeName `"Cube:Drilldown:2"`
* {Sector, Product, Country} Cube has TypeName `"Cube:Contract_Cube:3"` with Sector->Cube (TypeName `"Cube:Drilldown:3"`
---
## Element enhancement
The `IElement` interface of `Element<TElement>` has been updated to include an `ISetSpace` reference for the transformation of `ICubeFact` *facts* to the acyclic directed graph needed to render **Cubes** as a *Pivot-Table* with *drilldown* to futher details.
## HiLang enhancement
Extent expressions do not *normally* need `#id` to be recorded because they are not stored (calculated when needed from an element), but this is not the case for cube measures. Source editing has been added to carry forward the same `id` as the model changes.
---
Release also includes updates to referenced libraries