I am an asp.net mvc newbie. I haven't really done anything since classic asp. I want to display a list of files from a Mysql database based on the users role. So far I have created two tables some files will be viewable by more than one role. I am also using the MySql Membership Provider
Table Files
FileID, FileName, FilePath
Table FilesRole
FileID, RoleID
I am thinking I can add a file to the files table and then for each role that has access to that file I will need to add the fileID to the FilesRole table and also get the RoleID from the my_aspnet_roles table and add that to.
and then somehow when someone goes to view the files it will grab the ID of every role they are in and then get a list of files from the db
I have no idea where to start on this so any help would be greatly appreciated.