Is it possible to convert the column (stored as comma delimited) to be presented in the edmx designer as another entity?
table structure
student
id
name
subjects << this is the comma delimited column (1,2,3,10)
subject
id
name
EDMX designer structure would be
student
id
name
student_subject
studentId
subjectid
subject
id
name
If so, can someone point me on how to do it on EF designer.
NOTE: I cannot change the table structure and I'm using database first
thanks