Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common
1.0.0
Prefix Reserved
dotnet add package Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common --version 1.0.0
NuGet\Install-Package Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common -Version 1.0.0
<PackageReference Include="Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common" Version="1.0.0" />
<PackageVersion Include="Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common" Version="1.0.0" />
<PackageReference Include="Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common" />
paket add Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common --version 1.0.0
#r "nuget: Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common, 1.0.0"
#:package Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common@1.0.0
#addin nuget:?package=Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common&version=1.0.0
#tool nuget:?package=Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common&version=1.0.0
Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common
A NuGet package providing the core models and helper classes for the DataMiner Relationships solution. Use this package when you have direct access to an IConnection instance — for example in class libraries, console applications, or unit tests.
Getting Started
Prerequisites: A running DataMiner 10.5.9+ system with the SDM Registration package installed.
Obtain an IRelationshipManager from any IConnection instance and use it to register entities and the relationships between them. Always wrap it in a using block to properly clean up resources.
Link two entities (bidirectional):
using (var manager = connection.GetRelationshipManager())
{
var elementA = new EntityDescriptor
{
ID = "element-a",
DisplayName = "Element A",
ModelName = "Element",
SolutionID = "my-solution",
SolutionName = "My Solution"
};
var elementB = new EntityDescriptor
{
ID = "element-b",
DisplayName = "Element B",
ModelName = "Element",
SolutionID = "my-solution",
SolutionName = "My Solution"
};
manager.Link(elementA, elementB); // creates a ↔ b
}
Get directly connected entities:
using (var manager = connection.GetRelationshipManager())
{
var neighbors = manager.From(elementA).GetNeighbors();
foreach (var neighbor in neighbors)
Console.WriteLine($"Connected to: {neighbor.DisplayName}");
}
Traverse the graph up to N hops:
using (var manager = connection.GetRelationshipManager())
{
var results = manager.From(elementA).Traverse(maxDepth: 3);
foreach (var result in results)
Console.WriteLine($"{result.Entity.DisplayName} — {result.Depth} hop(s) away");
}
Create a directed (one-way) relation:
manager.Relate(source, target); // creates source → target only
For more details see the full documentation.
About
Contains the models and helper classes to interact with the relationships solution.
About DataMiner
DataMiner is a transformational platform that provides vendor-independent control and monitoring of devices and services. Out of the box and by design, it addresses key challenges such as security, complexity, multi-cloud, and much more. It has a pronounced open architecture and powerful capabilities enabling users to evolve easily and continuously.
The foundation of DataMiner is its powerful and versatile data acquisition and control layer. With DataMiner, there are no restrictions to what data users can access. Data sources may reside on premises, in the cloud, or in a hybrid setup.
A unique catalog of 7000+ connectors already exists. In addition, you can leverage DataMiner Development Packages to build your own connectors (also known as "protocols" or "drivers").
Note See also: About DataMiner.
About Skyline Communications
At Skyline Communications, we deal in world-class solutions that are deployed by leading companies around the globe. Check out our proven track record and see how we make our customers' lives easier by empowering them to take their operations to the next level.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net48 is compatible. net481 was computed. |
-
.NETFramework 4.8
- Newtonsoft.Json (>= 13.0.4)
- Skyline.DataMiner.CICD.CSharpAnalysis.Analyzer (>= 2.1.2)
- Skyline.DataMiner.Files.Skyline.DataMiner.Storage.Types (>= 10.5.9.2)
- Skyline.DataMiner.Files.SLNetTypes (>= 10.5.9.2)
- Skyline.DataMiner.SDM (>= 1.0.1)
- Skyline.DataMiner.SDM.SourceGenerator.Runtime (>= 1.0.1)
- Skyline.DataMiner.Utils.SecureCoding.Analyzers (>= 2.2.3)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common:
| Package | Downloads |
|---|---|
|
Skyline.DataMiner.Dev.Utils.Solutions.Relationships.GQI
Contains the common models and helper classes to interact with the relationships solution. |
|
|
Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation
Contains the common models and helper classes to interact with the relationships solution. |
|
|
Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Protocol
Contains the common models and helper classes to interact with the relationships solution. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 108 | 8/13/2026 |