Search属性 关于 Featureclass 和 Featurelayer

IFeatureClass.Search: Returns an object cursor that can be used to fetch feature objects selected by the specified query. IFeatureLayer2.Search: Use this method to return a read-only cursor of the layer’s features. There is “Search” method in both IFeatureLayer and IFeatureClass Interface. Both returns cursor based on search criteria. What is difference between these?. This question is obivious for a novice. If you have gone through Help documentation you can figure out easily. Else here is a straight answer They are the same unless you have a definition query assigned to the layer. In that case the FeatureLayer.Search will only return features that also meet the definition query criteria, while FeatureClass.Search will return all features regardless of definition query. This FeatureLayer Search method will not work on joined fields. If the FeaureLayer has any joins, you should use the IGeoFeatureLayer::SeachDisplayFeatures method instead. You cannot use the cursor returned by IFeatureLayer::Search to update features, instead use IFeatureClass::Update.

你可能感兴趣的:(Search属性 关于 Featureclass 和 Featurelayer)