<?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: Binding Query Result To FeatureDataGrid in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104841#M2646</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi Ezequias, you were able to run the code inside VS2010 Silverlight.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Apr 2013 20:39:10 GMT</pubDate>
    <dc:creator>ELIZABETH50</dc:creator>
    <dc:date>2013-04-26T20:39:10Z</dc:date>
    <item>
      <title>Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104829#M2634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am trying to bind the query result returned from by query to the FeatureDataGrid but instead of attributes the geometry of the result is getting bound to Feature datagrid.Please suggest the code to bind attributes to FeatureDataGrid.Thank you in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 08:24:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104829#M2634</guid>
      <dc:creator>ManojrajTeli</dc:creator>
      <dc:date>2011-07-26T08:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104830#M2635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;FeatureDataGrid will display fields that are in your graphic.Attributes. If your FeatureDataGrid.GraphicsLayer contain the results of your query and you have specified query.OutFields, these should be the same fields contained in the FeatureDataGrid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your FeatureDataGrid.Map and GraphicsLayer need to be set, similar to this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureDataGrid Grid.Row="2" x:Name="MyDataGrid" 
&amp;nbsp;&amp;nbsp;&amp;nbsp; Map="{Binding ElementName=MyMap}"
&amp;nbsp;&amp;nbsp;&amp;nbsp; GraphicsLayer="{Binding ElementName=MyMap, Path=Layers.[MyGraphicsLayerID]}" /&amp;gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:24:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104830#M2635</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-11T06:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104831#M2636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Oh thank you but this is during initialization that i have done already i want the part QueryTask_ExecutionCompleted event.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the Piece of Code what i have done.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Void queryTask_ExecuteCompleted(Object sender,ESRI.ArcGIS.Client.Task.QueryEventArgs e)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FeatureSet featureset=e.FeatureSet;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(featureset != null &amp;amp;&amp;amp; featureSET.Feature.Count&amp;gt;0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MyDataGrid.ItemsSource = featureSet.Features;//Here the attributed I have to bind&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Geometry is getting binded&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Suggest some way to bind attribute from feature set to FeatureDataGrid&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2011 03:23:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104831#M2636</guid>
      <dc:creator>ManojrajTeli</dc:creator>
      <dc:date>2011-07-27T03:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104832#M2637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The ItemsSource of your FeatureDataGrid must reference the graphics instance that are inside the layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So instead of setting the ItemsSource directly to the result of the query, you have to project the query result in order to get graphics instances in the feature layer (by using the objectID).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There is a sample in this thread : &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/18708-Problem-selecting-features-from-a-Feature-Layer"&gt;http://forums.arcgis.com/threads/18708-Problem-selecting-features-from-a-Feature-Layer&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2011 10:58:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104832#M2637</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2011-07-27T10:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104833#M2638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can please elaborate ...I am new at this and i tried those codes and not working and i want to show all the fields in feature datagrid depending on records selected by query and result returned...Its urgent.Thanks in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 06:55:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104833#M2638</guid>
      <dc:creator>ManojrajTeli</dc:creator>
      <dc:date>2011-07-28T06:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104834#M2639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Actually, you should not be setting FeatureDataGrid.ItemsSource property. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As long as FeatureDataGrid.Map and GraphicsLayer are set. All you have to do in the Query.ExecuteCompleted event handler is add the results to your GraphicsLayer.Graphics.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 16:55:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104834#M2639</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-07-28T16:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104835#M2640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am directlly fetching the Featuredatagrid from query on featureservice and i can see geometry,map tip etc columns but i don't know how to bind only features columns from query result.If you have code then please share. thanks its urgent.Thank you in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2011 08:42:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104835#M2640</guid>
      <dc:creator>ManojrajTeli</dc:creator>
      <dc:date>2011-07-29T08:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104836#M2641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Code is in post#2 This is all the Binding you will need for FeatureDataGrid. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This SDK sample shows how you can add results as graphic to your GraphicsLayer (see code-behind QueryTask_ExecuteCompleted):&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#SpatialQuery"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#SpatialQuery&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2011 17:52:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104836#M2641</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-07-29T17:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104837#M2642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have someone solve the problem of showing the attribute table yet? Actually I do not have fixed attribute columns. I just want to display the attribute table of one layer with all values as I can see in ArcMap, but in my case I want to display using Silverlight.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the code that retrieves the FeatureSelection:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; QueryTask queryTask = new QueryTask(url);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; queryTask.ExecuteCompleted += new EventHandler&amp;lt;QueryEventArgs&amp;gt;(queryTask_ExecuteCompleted);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; Query query = new Query();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; query.ReturnGeometry = true;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; // Use textbox text as query condition. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; query.Where = "1=1";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; query.OutFields.Add("*");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; queryTask.ExecuteAsync(query);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And the population I was trying to make:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; void queryTask_ExecuteCompleted(object sender, QueryEventArgs e)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; attribWidget.featureDataGrid1.Map = this.MapControl;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; attribWidget.featureDataGrid1.ItemsSource = e.FeatureSet.Features;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But I have no success neither with DataGrid nor FeatureDataGrid&lt;FONT face="Courier New"&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ps: I don't want to make any previous selection on the map, so I don't need a graphic layer. I just want to display attributes on FeatureDataGrid&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 21:41:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104837#M2642</guid>
      <dc:creator>EzequiasRodrigues_da_Rocha</dc:creator>
      <dc:date>2013-03-27T21:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104838#M2643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Code is in post#2 This is all the Binding you will need for FeatureDataGrid. &lt;BR /&gt;&lt;BR /&gt;This SDK sample shows how you can add results as graphic to your GraphicsLayer (see code-behind QueryTask_ExecuteCompleted):&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#SpatialQuery"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#SpatialQuery&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it possible to bind without making a spatial selection? I just want to bind the attribute table of my layer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any suggestion will be welcomed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ezequias Rocha&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 22:04:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104838#M2643</guid>
      <dc:creator>EzequiasRodrigues_da_Rocha</dc:creator>
      <dc:date>2013-03-27T22:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104839#M2644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt; &lt;SPAN style="font-family:Courier New;"&gt; void queryTask_ExecuteCompleted(object sender, QueryEventArgs e)&lt;BR /&gt; {&lt;BR /&gt; attribWidget.featureDataGrid1.Map = this.MapControl;&lt;BR /&gt; attribWidget.featureDataGrid1.ItemsSource = e.FeatureSet.Features;&lt;BR /&gt; }&lt;/SPAN&gt; &lt;BR /&gt; &lt;BR /&gt;But I have no success neither with DataGrid nor FeatureDataGrid&lt;FONT face="Courier New"&gt;&lt;/FONT&gt;&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt; &lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;ps: I don't want to make any previous selection on the map, so I don't need a graphic layer. I just want to display attributes on FeatureDataGrid&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you add a breakpoint in queryTask_ExecuteCompleted? is e.FeatureSet.Features returning results? If it's not returning anything then there's your problem. But if it is returning some features the problem might have to do with how the FeatureDataGrid is set up. For isntance, if you have AutoGenerateColumns=FALSE, then it might be unable to create the needed collumns and therefore not create any rows (just a guess).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, A bit of advice: If it is just not working at all remove/change pieces of the example slowly and test after each one until it breaks so that way you can figure out where it's breaking and what you are doing to break it. Good luck!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Apr 2013 12:29:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104839#M2644</guid>
      <dc:creator>PhilipKnight1</dc:creator>
      <dc:date>2013-04-04T12:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104840#M2645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I got the solution on this thread.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.esri.com/Thread.asp?c=93&amp;amp;f=2455&amp;amp;t=283850&amp;amp;g=1#top"&gt;http://forums.esri.com/Thread.asp?c=93&amp;amp;f=2455&amp;amp;t=283850&amp;amp;g=1#top&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sincerely&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ezequias Rocha&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 11:19:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104840#M2645</guid>
      <dc:creator>EzequiasRodrigues_da_Rocha</dc:creator>
      <dc:date>2013-04-24T11:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Binding Query Result To FeatureDataGrid</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104841#M2646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi Ezequias, you were able to run the code inside VS2010 Silverlight.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Apr 2013 20:39:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/binding-query-result-to-featuredatagrid/m-p/104841#M2646</guid>
      <dc:creator>ELIZABETH50</dc:creator>
      <dc:date>2013-04-26T20:39:10Z</dc:date>
    </item>
  </channel>
</rss>

