Hi,
I have a few classes:
Article
-------
Content
ID
Magazine
--------
Name
Code
And 3 tables in database:
Articles
Magazines
ArticlesInMagazines (two fields: IDArticle and CodeMagazine)
In my app, I've got a module to manage Articles, and a datagridview to relate their associated magazines
DataGridView has twofields:
MagazineCode
IsPublished (indicates articles which have been published in this magazine).
The same article can be in many magazines (1:n)
How would you implement on model ?
Article have to has a field : List ?? I am concerned because Magazine associates Articles