<?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 multiple definitions on a Feature Layer filter in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/multiple-definitions-on-a-feature-layer-filter/m-p/540051#M13805</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Howdy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm wondering if I can do something like "500000&amp;gt; POP2000 &amp;gt; 1000000" instead of&amp;nbsp; "POP2000 &amp;gt; 1000000" for a filter? Basically, trying to get only certain set of features back with both upper and lower limit. A good use case would be to find out which parcels are between area 500 sq feet to 1000 sq feet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Jun 2011 14:57:42 GMT</pubDate>
    <dc:creator>SangamLama</dc:creator>
    <dc:date>2011-06-09T14:57:42Z</dc:date>
    <item>
      <title>multiple definitions on a Feature Layer filter</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/multiple-definitions-on-a-feature-layer-filter/m-p/540051#M13805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Howdy,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm wondering if I can do something like "500000&amp;gt; POP2000 &amp;gt; 1000000" instead of&amp;nbsp; "POP2000 &amp;gt; 1000000" for a filter? Basically, trying to get only certain set of features back with both upper and lower limit. A good use case would be to find out which parcels are between area 500 sq feet to 1000 sq feet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jun 2011 14:57:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/multiple-definitions-on-a-feature-layer-filter/m-p/540051#M13805</guid>
      <dc:creator>SangamLama</dc:creator>
      <dc:date>2011-06-09T14:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: multiple definitions on a Feature Layer filter</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/multiple-definitions-on-a-feature-layer-filter/m-p/540052#M13806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Try "500000&amp;lt; POP2000 AND POP2000 &amp;lt; 1000000"&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jun 2011 15:11:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/multiple-definitions-on-a-feature-layer-filter/m-p/540052#M13806</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2011-06-09T15:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: multiple definitions on a Feature Layer filter</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/multiple-definitions-on-a-feature-layer-filter/m-p/540053#M13807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Look at the Where property of a FeatureLayer.&amp;nbsp; Documentation says 'Any legal SQL where clause operating on the fields in the layer is allowed' so you should be able to do something like&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp; FeatLayer.Where = "POP2000 &amp;gt; 500000 AND POP2000 &amp;lt; 1000000";
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What's considered legal SQL statement will depend on the underlying data source.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;TG&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:25:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/multiple-definitions-on-a-feature-layer-filter/m-p/540053#M13807</guid>
      <dc:creator>TerryGiles</dc:creator>
      <dc:date>2021-12-11T23:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: multiple definitions on a Feature Layer filter</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/multiple-definitions-on-a-feature-layer-filter/m-p/540054#M13808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;thanks to you both. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Look at the Where property of a FeatureLayer.&amp;nbsp; Documentation says 'Any legal SQL where clause operating on the fields in the layer is allowed' so you should be able to do something like&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;nbsp; FeatLayer.Where = "POP2000 &amp;gt; 500000 AND POP2000 &amp;lt; 1000000";
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;What's considered legal SQL statement will depend on the underlying data source.&lt;BR /&gt;&lt;BR /&gt;TG&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:25:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/multiple-definitions-on-a-feature-layer-filter/m-p/540054#M13808</guid>
      <dc:creator>SangamLama</dc:creator>
      <dc:date>2021-12-11T23:25:28Z</dc:date>
    </item>
  </channel>
</rss>

