Tagged Questions

7
votes
7answers
1k views

Unit testing with Entity Framework

I want to test my Entities that are built using Entity Framework. My concern is that using Entity Framework means directly working with data source. So any ideas how to unit testing Entity Framework …
1
vote
2answers
432 views

Multiple joins to the same table with the Entity Framework

Hi, If I have a table with two foreign key fields to another table, I.E. Table: User Field: FK_PrimaryItem_ID Field: FK_SecondaryItem_ID Table: Item Field: ItemID When I'm using the entity …
0
votes
1answer
18 views

Deleting Entity in Entity Model gives Foreign Key errors

Deleting Entity in Entity Model gives Foreign Key errors Error 92 Error 3013: Problem in Mapping Fragments starting at lines 5023, 5183, 5507: Missing table mapping: Foreign key constraint …
0
votes
0answers
30 views

Entity Framework Stub Entities for fetches

Hi guys Alex James talks about using stub entities to stub-out/fake relationships. The context in which this is discussed is for updates/inserts/deletes. I need to be able to do the same thing for …
0
votes
1answer
45 views

Entity Framework: Adding a scalar property which is equal to a FK id

Hi guys Short Question: Basically I am trying to add a scalar property to my entity which holds the ID of a FK entity. What I have tried to do thus far: What I have tried so far is adding the …
0
votes
2answers
97 views

Entity Framework in Partial trust environment

I know that Entity Framework supports Partial trust, I personally blogged about that It was working fine, I tested it and it was fine. Now if you download the samples attached to my post about the …
0
votes
3answers
377 views

Cast linq results to List<MyInterface>

Hi, I have extended my entities to implement specific interfaces for its type. I am trying to perform the following query: var results = from x in context.MyEntityTable where …