I want to make a many to many connection with a field in it.
example: User -----works (hours)----- Company
Hours is a field in the many-to-many table. The field describes how many hours a user works in the company.
How is this best modeled in the entity framework?
Can you even model this without making a entity out of the connection table?