As the title says, how do I do that?

My code so far:

List<SearchEntity> results = new List<SearchEntity>();
var title = tbTitle.Text;
var adress = tbAdress.Text;
var city = tbCity.Text;

foreach (var item in list.Items.Cast<SPListItem>().Where(r => title.Contains(r.Title) || adress.Contains((string)r["Adress"]) || city.Contains((string)r["City"])))
            {
                var result = new SearchEntity
                                 {
                                     title = item.Title,
                                     adress = (string)item["Adress"],
                                     city = (string)item["City"],
                                 };
                results.Add(result);
            }
return results;

I have tried casting all the values .ToLower() and .ToUpper() but that didn't seem to do the trick.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Method String.Contains performs case-sensitive and culture-insensitive comparison, so if you want case-insensitive contain use IndexOf method like

title.IndexOf(r.Title, StringComparison.InvariantCultureIgnoreCase) >= 0

but in your code you fetch all items and filter record there, if List will contain many items, this way is not recommended, as it involves getting all items from list. Maybe it’s better use CAML Query (or LINQ in Sharepoint2010). What do you want to find? Items where fields Title/City/Address contain value from vars title/city/address or you want find items where fields Title/City/Address value contained in vars title/city/address. In 1st case your CAML will be like:

List<SearchEntity> results = new List<SearchEntity>();
var title = tbTitle.Text;
var adress = tbAdress.Text;
var city = tbCity.Text;
var query = new SPQuery()
{
    Query = string.Format(
        @"
                    <Where>
                        <Or>
                            <Or>
                                <Contains>
                                    <FieldRef Name=""Title"" />
                                    <Value Type=""Text"">{0}</Value>
                                </Contains>
                                <Contains>
                                    <FieldRef Name=""Adress"" />
                                    <Value Type=""Text"">{1}</Value>
                                </Contains>
                            </Or>
                            <Contains>
                                <FieldRef Name=""City"" />
                                <Value Type=""Text"">{2}</Value>
                            </Contains>
                        </Or>
                    </Where>", title, adress, city)
};
var items = list.GetItems(query);
foreach (var item in items)
{
    var result = new SearchEntity
    {
        title = item.Title,
        adress = (string)item["Adress"],
        city = (string)item["City"],
    };
    results.Add(result);
}
return results;
link|improve this answer
Thank you for this! – Dandroid Aug 1 '11 at 8:35
Another thing I want to know is, if the column names varies from list to list, but will ALWAYS be one of either, is there then a way using CAML to check if it's either the first or the second column name which is being used? – Dandroid Aug 1 '11 at 8:54
1  
No, but you can use method SPFieldCollection.ContainsField from SPList.Fields and then change CAML (for CAML use SPField.InternalName) – MishaU Aug 1 '11 at 12:54
Thank you so much, again – Dandroid Aug 1 '11 at 12:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.