From 005ecf896bb62a90cc333d8c5bc399029b1532e1 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 20 Jan 2017 09:50:50 -0800 Subject: [PATCH] Fix link to Azure Blob storage article to not render the URL inline (#2555) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add an optional extended description… --- aspnetcore/mvc/models/file-uploads.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: