List<IStoreItem> StoreItems = new List<IStoreItem>();
StoreItems = repository.ProductToCatMaps.Where(x => CatList.Contains(x.ExCatID))
.Select(x => x.ProductShell ?? x.PCBuild);
The entity classes:
public class ProductShell : IStoreItem
{
}
public class PCBuild : IStoreItem
{
}
The ProductToCatMaps table contains the external category ID for each respective store item, I have two store items types: ProductShell and PCBuild. I wish to select either one depending on which is set to null, only one can contain a value (Foregn key to the respective types entry in the database ) which I need to select.
.Select(x => (IStoreItem)x.ProductShell ?? x.PCBuild);- it might work, but I am not sure that it would. – dasblinkenlight Apr 21 '12 at 0:53