If multiple rows share the same value in the primary column(s), only the first of these seems to be retrieved from the database and copied into these other rows. For instance, if a set has 2 columns, with the first being marked as the primary column, and
the correct result should be:
A, 1
A, 2
B, 4
B, 6
B, 7
C, 5
The actual result in code with Entity Framework would become:
A, 1
A, 1
B, 4
B, 4
B, 4
C, 5
When including a view in your Entity Model, the model seems to simply use the first not-nullable columns as primary key (as all columns used in the primary key should be non-nullable).
To fix the problem, make sure that the primary key columns are chosen correctly. If you cannot create the correct primary key because of null-values or simply not having set of columns that differs for each row, try adding a column to your view that always contains a unique value for each row. After you add it, make sure it is set as the primary key in your Entity Model.
If I would set both rows to be the Primary Columns in the above example, I would get the desired result.