looking to to take the values from a textblock and run that through a query....But I am looking to make sure its a wildcard search...Questions:query.OutFields.Add("*") - Does this give the query parameters to search these fields?Something like this were its:returning all fields so I can populate a listboxGrabing the value from the FindAddress TextblockLook in [Address] Field Where LIKE value from FindAddress TextblockThink I just need a syntax check on the WHERE clause??Thouhts
Dim query As New ESRI.ArcGIS.Client.Tasks.Query()
query.OutFields.Add("*")
query.Text = FindAddress.Text
query.Where = [Address] Like FindAddress.Text
query.ReturnGeometry = True
query.OutSpatialReference = MyMap.SpatialReference
queryTask.ExecuteAsync(query)