I have two tables with a 1-M FK. Table 1 is simple user preferences info (i.e. how they like to see the data). Table 2 contains Temperature data (in varying scales). The two tables are FK with a UserIdentity column.

UserInfo
UserIdentity int
:
TemperaturePreference int

Temperatures
UserIdentity int
:
Celcius decimal
Farenheit decimal

EF has generated classes for both tables and the relationship. I want to extend the Temperature class by adding a Scale property, so I do that in another partial file for Temperature class, but the EDMX designer (or the model browser) doesn't 'see' this extra property so gives me no way to provide a mapping in the diagram.

My problem comes when trying to manually set the value of the Scale property from the UserInfo object (the 1 side of the 1-M) into the Scale property of the Temperature object.

I've tried using this code (rc is the ObjectContext) (IdentityMap join is to make sure it is for the correct user)

    var x = from r in rc.Temperatures
            where r.GUIDIdentityMap.UserId == userId
            select new Temperature{ Scale = (Temperature.ScaleType)r.UserInfo.WeightPreference, 
                                    UserIdentity = r.UserIdentity,
                                    Id = r.Id,
                                    Recorded = r.Recorded,
                                    Centigrade = r.Centigrade,
                                    Farenheit = r.Farenheit};

    List<Temperature> l = x.ToList();

This compiles but fails at runtime with a "the entity or complex type Records.Temperature cannot be constructed in a linq to entities query".

I can't use the Inheritance in the designer because it is a 1:M relationship and it seems only 1-1 are allowed.

Is there a way to do what I want without resorting to creating another class that looks just like a Temperature object but with an extra Scale property or without resorting to using SPs which would be simple but then questions the value of using EF?

Am I barking up the wrong tree entirely and there is a simple way to do this in EF?

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.