<?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 Attribute Query on Muitiple fields in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-query-on-muitiple-fields/m-p/114598#M2862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Attribute Query on Multiple fields&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I was wondering if there is an example of attribute query on multiple fields or if someone could help me construct the schema.&amp;nbsp; Basically, I???m building a project where my end users want to query one layer but multiple fields (a police calls for service dispatch point layer).&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;They are interested in asking 3 basic questions: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What kind of Calls/Crimes are you looking for (The layer has a Calls for service/Crimes type fields)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Where are you interested in (the layer has a beat/sector field)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When (there are date /time fields) and I would like to provide a date/time calendar picker.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All the same layer???..3 fields are queried and then results are shown on the map and in a table grid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Christine Zeller&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Oct 2010 17:45:05 GMT</pubDate>
    <dc:creator>ChristineZeller</dc:creator>
    <dc:date>2010-10-28T17:45:05Z</dc:date>
    <item>
      <title>Attribute Query on Muitiple fields</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-query-on-muitiple-fields/m-p/114598#M2862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Attribute Query on Multiple fields&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I was wondering if there is an example of attribute query on multiple fields or if someone could help me construct the schema.&amp;nbsp; Basically, I???m building a project where my end users want to query one layer but multiple fields (a police calls for service dispatch point layer).&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;They are interested in asking 3 basic questions: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What kind of Calls/Crimes are you looking for (The layer has a Calls for service/Crimes type fields)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; Where are you interested in (the layer has a beat/sector field)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When (there are date /time fields) and I would like to provide a date/time calendar picker.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All the same layer???..3 fields are queried and then results are shown on the map and in a table grid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Christine Zeller&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2010 17:45:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-query-on-muitiple-fields/m-p/114598#M2862</guid>
      <dc:creator>ChristineZeller</dc:creator>
      <dc:date>2010-10-28T17:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Query on Muitiple fields</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-query-on-muitiple-fields/m-p/114599#M2863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can use Where property of the Query &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Tasks.Query~Where.html"&gt;http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Tasks.Query~Where.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In this feature service, I'm able to perform query on any number of fields:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/HomelandSecurity/operations/FeatureServer/2"&gt;http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/HomelandSecurity/operations/FeatureServer/2&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;Where = ftype &amp;lt;&amp;gt; 10501 and fcode &amp;lt;&amp;gt; 10501 and objectid &amp;gt; 9155&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The FeatureLayer.LayerInfo.Fields have the following members &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Field_members.html"&gt;http://help.arcgis.com/en/webapi/silverlight/apiref/ESRI.ArcGIS.Client~ESRI.ArcGIS.Client.Field_members.html&lt;/A&gt;&lt;SPAN&gt;, the field's type will help you determine how you choose what control to use (i.e. DateTimePicker).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Oct 2010 02:03:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/attribute-query-on-muitiple-fields/m-p/114599#M2863</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-10-29T02:03:49Z</dc:date>
    </item>
  </channel>
</rss>

