How can I use dissolve with ArcGIS Pro SDK?
My old code in ArcObjects was
ExecuteGeoprocessingTool(new ESRI.ArcGIS.DataManagementTools.Dissolve()
{
in_features = intermediate,
dissolve_field = "Name",
out_feature_class = modelExtent
}, false);
Is there something similar in ArcGIS Pro SDK I can do?
Is there a way to do this? Perhaps there is an interface that lets me use the arcpy from arcgis pro sdk?
Yes you can call a python script from your SDK solution. Here is an example. I have not personally tried to dissolve with the Pro SDK. Here is an example of executing a geoprocessing tool with the Pro SDK.