Entity Framework 5.0 and FileTable
So say I have the following tables in my SQL Server 2012 DB: Person PersonId FirstName LastName Photo PhotoId PersonId (fk) DateTaken PhotoFileTable (all the FileTable columns) And the photos stored on disk are structured like this: \\myserver\filestreamshare\People\PersonId\Photo1.tif And very important: There are a TON of photos ALREADY on disk that need to be added to the database- that's why I thought a FileTable would be cool as it automatically picks them up. So I need to do 2 things- first, relate the Photo table to the PhotoFileTable so that I can get all photos for a person. And