Dealing with large file uploads on ASP.NET Core 1.0

When I'm uploading large files to my web api in ASP.NET Core, the runtime will load the file into memory before my function for processing and storing the upload is fired. With large uploads this b...