Pete
Pete

Reputation: 2463

Entity Framework Query Results Duplicate

All basic MVC stuff.

When I run the application I receive duplicate records. To further qualify, if an order has more than one line it returns the first record for each line in the "order".

SQL Results
Order, Line, Part
12345, 1, 3829138120
12345, 2, 1238401890

MVC/EF Results
Order, Line
12345, 1, 3829138120
12345, 1, 3829138120

Any thoughts as to the cause of this problem?

Upvotes: 6

Views: 1419

Answers (1)

dani herrera
dani herrera

Reputation: 51645

You should double check the entity key attributes. I see your query result and you should mark as primary key Order and Line and I think that you have forget mark order as key.

Upvotes: 6

Related Questions