I want to query my ArcSDE geodatabase using LINQ but I don´t know if there is an ESRI-provider that may also read geometries and which is able to handle archiving as well. Thus I´d like to read data from a FeatureClass for example and apply a whereclause:
IRelationalOperator relOp = (IRelationalOperator) myFeature.Shape;var features = featureClass .Where(x => relOp.Within(x.Shape) && x.MyProperty > 1) .OrderBy(x => x.MyProperty)Appaerently while querying simple structures such as a numeric field might be quite easy I suppose geometric queries expect much more work.
Does this even exist or has anyone ever done something similar? Will it exist on ArcGIS Pro (of course not using arcobjects)?
أكثر...
IRelationalOperator relOp = (IRelationalOperator) myFeature.Shape;var features = featureClass .Where(x => relOp.Within(x.Shape) && x.MyProperty > 1) .OrderBy(x => x.MyProperty)Appaerently while querying simple structures such as a numeric field might be quite easy I suppose geometric queries expect much more work.
Does this even exist or has anyone ever done something similar? Will it exist on ArcGIS Pro (of course not using arcobjects)?
أكثر...