diff --git a/aspnetcore/mvc/models/file-uploads.md b/aspnetcore/mvc/models/file-uploads.md index 55cf71d544..4b6190bd69 100644 --- a/aspnetcore/mvc/models/file-uploads.md +++ b/aspnetcore/mvc/models/file-uploads.md @@ -114,7 +114,7 @@ When uploading files using model binding and the `IFormFile` interface, the acti ``` -Files uploaded using the `IFormFile` technique are buffered in memory or on disk on the web server before being processed. Inside the action method, the `IFormFile` contents are accessible as a stream. In addition to the local file system, files can be streamed to *Azure blob storage * or Entity Framework. +Files uploaded using the `IFormFile` technique are buffered in memory or on disk on the web server before being processed. Inside the action method, the `IFormFile` contents are accessible as a stream. In addition to the local file system, files can be streamed to [Azure Blob storage](https://azure.microsoft.com/en-us/documentation/articles/vs-storage-aspnet5-getting-started-blobs) or Entity Framework. To store binary file data in a database using Entity Framework, define a property of type `byte[]` on the entity: