EF5 db.Database.SqlQuery mapping returned objects
I have two C# classes public class SearchResult { public int? EntityId { get; set; } public string Name { get; set; } public Address RegisteredAddress { get; set; } } and public class Address { public int? AddressId { get; set; } public string Address1 { get; set; } public string Address2 { get; set; } public string Address3 { get; set; } } this is used in a dbContext call to map out the returning objects from a database via EF5 using (DbEntities db = new DbEntities()) { querySearchResult = db.Database.SqlQuery<SearchResult>( @"SELECT e.entity_id AS EntityId, e.entity_reg_name AS Name, a