Hi all,
Is there a simple way to delete all DCF connections associated with an element?
I know it is possible to delete 1 by 1 from Cube:
Advanced Connectivity configuration | DataMiner Docs
But in this case, we would like to delete all of them so it can start over building the connections.
Thanks.
Hi Edson, I believe you can use the DCF Helper nuget functionality to use methods like
using (var dcf = new DcfHelper(protocol, Parameter.mapstartupelements_63993, opt))
{
dcf.DeleteAllManagedDCF();}
The above will also clean up properties and such, which you may not want. There is also dcf.RemoveConnections if you only want to adjust the connections.
There is also some public reference you can use via github: https://github.com/SkylineCommunications/SLC-C-Example_ConnectivityFramework/tree/879576352e837d78b140cbc60edb796624a2006f
There are also more samples via GitHub I can send you, but those would be a good place to start.