Hi,
I have the following database model:
[User] Id Name [Role] Id Name [UserRole] UserId RoleId IsActive
And I want to create a nice way to represent this relationship and the property that is in it with objects without creating a class to represent UserRole table.
Any ideas?
Thanks a lot!