I'm trying to build a utility method using Linq that will help me with a common Linq-to-Objects search.
I have a PropertyTbl object which has a reference to an Address.
I have a IEnumerable<PropertyTbl>.
I have written a helper that takes an IEnumerable<Address> and some search criteria returns an IEnumerable<Address> which when iterated will give me the matching addresses.
However I can't figure out how to plug the two together because although I can do a .Select() on my IEnumerable<PropertyTbl> to get the address enumerable I need the result to be IEnumerable<PropertyTbl>.
Here's my helper code
public static IEnumerable<Address> BuildAddressWhereClause(IEnumerable<Address> addresses, string value, AddressSearchOptions options)
{
string search = value.ToUpper();
if ((options & AddressSearchOptions.Address1To4) == AddressSearchOptions.Address1To4)
{
addresses = addresses.Where(o => o.Address1.ToUpper().Contains(search)
|| o.Address2.ToUpper().Contains(search)
|| o.Address3.ToUpper().Contains(search)
|| o.Address4.ToUpper().Contains(search));
}
if ((options & AddressSearchOptions.City) == AddressSearchOptions.City)
{
addresses = addresses.Where(o => o.City.ToUpper().Contains(search));
}
if ((options & AddressSearchOptions.PostCode) == AddressSearchOptions.PostCode)
{
addresses = addresses.Where(o => o.PostCode.ToUpper().Contains(search));
}
return addresses;
}
and what I want to do is this.
IEnumerable<PropertyTbl> properties = ...;
IEnumerable<PropertyTbl> filteredProperties = <use my address helper somehow>;
// this works but I need the properties as the result not just the addresses
IEnumerable<Address> filteredAddresses = AddressUtils.FilterAddresses(properties.Select(o => o.Address), "1 High Street", ...);
I can do what I want by putting the helper code directly into the code where properties are being loaded/filtered but then I can't reuse it.
Any suggestions appreciated.
SelectMany.Wherecommand? – leppie Aug 16 '10 at 12:33from p in properties from a in p.addresses select aorproperties.SelectMany(p => p.addresses). ReturnsIEnumerable<Address>. HTH :) – leppie Aug 16 '10 at 12:44.ToUpper().Contains(), you can avoid creating the temporary string by using.IndexOf()and telling it to do a case-insensitive search:o.PostCode.IndexOf(search, StringComparison.CurrentCultureIgnoreCase) >= 0– Gabe Aug 16 '10 at 12:51