<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to access a Feature Class rows without creating a feature layer or project item in ArcGIS Pro SDK? in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114936#M7332</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;&amp;nbsp; Thank you for your reply but those links are broken on my end.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/221628"&gt;@Aashis&lt;/a&gt;&amp;nbsp;link and worked fine. I appreciate your help though.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#geodatabases-and-datastores" target="_blank" rel="noopener"&gt;https://github.com/Esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#geodatabases-and-datastores&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Nov 2021 18:00:54 GMT</pubDate>
    <dc:creator>Amadeus111</dc:creator>
    <dc:date>2021-11-08T18:00:54Z</dc:date>
    <item>
      <title>How to access a Feature Class rows without creating a feature layer or project item in ArcGIS Pro SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114869#M7326</link>
      <description>&lt;P&gt;I need to read a field's values from a Feature Class specifically it is a Feature Class in an enterprise geodatabase. The values will be populated as a Search Box suggestion source.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can do that by creating a FeatureLayer via&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;LayerFactory.Instance.CreateFeatureLayer &lt;/LI-CODE&gt;&lt;P&gt;and using RowCursor&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt; using (ArcGIS.Core.Data.Table ProposedBoundariesTable = FLayer.GetTable())
{
   using (RowCursor rowCursor = ProposedBoundariesTable.Search())
   {
        //collect the information                        
   }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, in some cases, I want end-users would be able to do make a quick search without creating a Feature Layer or project item. Is there a way to do that in ArcGIS Pro SDK?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 13:27:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114869#M7326</guid>
      <dc:creator>Amadeus111</dc:creator>
      <dc:date>2021-11-08T13:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a Feature Class rows without creating a feature layer or project item in ArcGIS Pro SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114900#M7328</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/284174"&gt;@Amadeus111&lt;/a&gt;&amp;nbsp;Can you open the row cursor as below as described in&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#geodatabases-and-datastores" target="_self"&gt;snippets&lt;/A&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;// Open a featureClass (within a feature dataset or outside a feature dataset).&lt;/SPAN&gt;
&lt;SPAN class=""&gt;using&lt;/SPAN&gt; (&lt;SPAN class=""&gt;FeatureClass&lt;/SPAN&gt; &lt;SPAN class=""&gt;featureClass&lt;/SPAN&gt; &lt;SPAN class=""&gt;=&lt;/SPAN&gt; &lt;SPAN class=""&gt;geodatabase&lt;/SPAN&gt;.&lt;SPAN class=""&gt;OpenDataset&lt;/SPAN&gt;&amp;lt;&lt;SPAN class=""&gt;FeatureClass&lt;/SPAN&gt;&amp;gt;(&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;"FeatureClassName&lt;/SPAN&gt;&lt;SPAN class=""&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;)) 
 using (RowCursor rowCursor = &lt;SPAN class=""&gt;featureClass&lt;/SPAN&gt; .Search(new QueryFilter())){&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 15:43:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114900#M7328</guid>
      <dc:creator>Aashis</dc:creator>
      <dc:date>2021-11-08T15:43:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a Feature Class rows without creating a feature layer or project item in ArcGIS Pro SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114914#M7329</link>
      <description>&lt;P&gt;You can find documentation on how to open an enterprise geodatabase here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Geodatabase#datastore" target="_blank" rel="noopener"&gt;ProConcepts Geodatabase · ArcGIS/arcgis-pro-sdk Wiki (github.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and documentation on how to access feature class data here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Geodatabase#working-with-feature-data" target="_blank" rel="noopener"&gt;ProConcepts Geodatabase · ArcGIS/arcgis-pro-sdk Wiki (github.com)&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 19:24:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114914#M7329</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2021-11-08T19:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a Feature Class rows without creating a feature layer or project item in ArcGIS Pro SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114934#M7331</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/221628"&gt;@Aashis&lt;/a&gt;&amp;nbsp;&amp;nbsp;Yes, I can. Thanks, I have been looking for this for a long time.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 16:42:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114934#M7331</guid>
      <dc:creator>Amadeus111</dc:creator>
      <dc:date>2021-11-08T16:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a Feature Class rows without creating a feature layer or project item in ArcGIS Pro SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114936#M7332</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;&amp;nbsp; Thank you for your reply but those links are broken on my end.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/221628"&gt;@Aashis&lt;/a&gt;&amp;nbsp;link and worked fine. I appreciate your help though.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#geodatabases-and-datastores" target="_blank" rel="noopener"&gt;https://github.com/Esri/arcgis-pro-sdk/wiki/ProSnippets-Geodatabase#geodatabases-and-datastores&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 18:00:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1114936#M7332</guid>
      <dc:creator>Amadeus111</dc:creator>
      <dc:date>2021-11-08T18:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to access a Feature Class rows without creating a feature layer or project item in ArcGIS Pro SDK?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1115000#M7333</link>
      <description>&lt;P&gt;Glad you found a solution, sorry, my links pointed to a private repo, i fixed them.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Nov 2021 19:23:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-access-a-feature-class-rows-without/m-p/1115000#M7333</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2021-11-08T19:23:55Z</dc:date>
    </item>
  </channel>
</rss>

