Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation
1.0.0
Prefix Reserved
dotnet add package Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation --version 1.0.0
NuGet\Install-Package Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation -Version 1.0.0
<PackageReference Include="Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation" Version="1.0.0" />
<PackageVersion Include="Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation" Version="1.0.0" />
<PackageReference Include="Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation" />
paket add Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation --version 1.0.0
#r "nuget: Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation, 1.0.0"
#:package Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation@1.0.0
#addin nuget:?package=Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation&version=1.0.0
#tool nuget:?package=Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation&version=1.0.0
Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Automation
A NuGet package providing models and helper classes for interacting with the DataMiner Relationships solution from within DataMiner Automation scripts.
Getting Started
Prerequisites: A running DataMiner 10.5.9+ system with the SDM Registration package installed.
Obtain an IRelationshipManager from the engine object 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 = engine.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 = engine.GetRelationshipManager())
{
var neighbors = manager.From(elementA).GetNeighbors();
foreach (var neighbor in neighbors)
engine.GenerateInformation($"Connected to: {neighbor.DisplayName}");
}
Traverse the graph up to N hops:
using (var manager = engine.GetRelationshipManager())
{
var results = manager.From(elementA).Traverse(maxDepth: 3);
foreach (var result in results)
engine.GenerateInformation($"{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
- Skyline.DataMiner.CICD.CSharpAnalysis.Analyzer (>= 2.1.2)
- Skyline.DataMiner.Dev.Automation (>= 10.5.9.2)
- Skyline.DataMiner.Dev.Utils.Solutions.Relationships.Common (>= 1.0.0)
- Skyline.DataMiner.Utils.SecureCoding.Analyzers (>= 2.2.3)
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 |
|---|---|---|
| 1.0.0 | 81 | 8/13/2026 |