ASP NET Core MVC how to display data from SQL table in List Razor Template by UserID foreign key

I have a Identity tables like AspNetUsers and others. I created migration Files with foreign key UserID to Id from AspNetUsers table for save files in Files table with logged in user Id. But in my FileManager View I see all files from Files table, but I need to display files only with UserID = Id from AspNetUsers (I mean with Id of logged in user). How Can I do it?