POST
|
Hi Laurentiu, As Max suggested, we don't have support for reading and editing BLOB fields yet. It has been scheduled for the next release. As a workaround, could attachments be used to store binary data? We have support to store binary data by assigning MemoryStreams or obtaining MemoryStreams from the Attachement table. Please refer to How to create a memory stream and Adding Attachments for more information. -Sree
... View more
01-17-2017
10:37 AM
|
0
|
1
|
43
|
POST
|
Hi, Augmenting the implementation for GetDatastore could not be completed for the 1.4 release. It will be available for the next release. Sorry for the inconvenience. -Sree
... View more
01-13-2017
10:04 AM
|
1
|
0
|
15
|
POST
|
Hi Luke, We are looking at the design for providing access to the metadata from the ArcGIS.Core.Dataset.Definition class. Just as an FYI... out initial thoughts are going towards returning the metadata as an XML Document. This will be on our backlog for 1.4, but we are not sure if this will be completed by 1.4 or not. Thanks for the feedback though. -Sree
... View more
07-07-2016
09:56 AM
|
1
|
7
|
38
|
POST
|
Hi Vijay, You can use the GetDefinitions (ArcGIS Pro 1.2 API Reference Guide) method instead. The Definition is a much lighter weight construct which does not open the feature class. One more thing to remember is that getting the TableDefinitions will not give you the FeatureClassDefinitions. Try the following code out. It uses the LINQ syntax for more concise code. string featureClassName = AppConstants.ExportProposedBuildingName; IReadOnlyList<string> valueArray = null; await QueuedTask.Run(() => { Geodatabase fileGeodatabase = new Geodatabase(@"c:\0_Projects\CapeCodCommission\CapeCod.gdb"); List<Definition> definitions = new List<Definition>(); definitions.AddRange(fileGeodatabase.GetDefinitions<TableDefinition>()); definitions.AddRange(fileGeodatabase.GetDefinitions<FeatureClassDefinition>()); int index = 0; while(definitions.Any(definition => definition.GetName().Equals(featureClassName))) featureClassName = AppConstants.ExportProposedBuildingName + "_" + ++index; valueArray = Geoprocessing.MakeValueArray (proposedBuildingLayer, @"C:\0_Projects\CapeCodCommission\CapeCod.gdb\" + featureClassName); }); -Sree
... View more
06-01-2016
10:44 AM
|
0
|
1
|
38
|
POST
|
Hi Chris, We have it in our backlog as one of the high(er) priority items and looking to include it in a future release. This might not be too helpful, but there it is. Thanks, Sree
... View more
08-31-2015
10:05 AM
|
1
|
0
|
7
|
POST
|
Hi Christoph, We do not have support for QueryDefs yet. But the above can be achieved using the QueryFilter and Search on the corresponding table (as long as Joins or Aggregates are not involved). Please see ProConcepts Geodatabase · Esri/arcgis-pro-sdk Wiki · GitHub for an example. Thanks, Sree
... View more
08-24-2015
12:14 PM
|
1
|
2
|
7
|
POST
|
Hi Adam, We do have snippets for creating a feature from given an sde file path. You can find it here https://github.com/ArcGIS/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#creating-a-feature. It is recommended that edits have to be performed within the EditOperation. This allows for editing versioned/non-versioned data with undo/redo/discard/abort capabilities wherever required. Please see https://github.com/ArcGIS/arcgis-pro-sdk/wiki/ProConcepts-Editing#performing-edits for more details. Thanks, Sree
... View more
08-21-2015
10:34 AM
|
0
|
1
|
4
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|