Fix link to Azure Blob storage article to not render the URL inline (#2555)

Add an optional extended description…
pull/2562/head
Daniel Roth 2017-01-20 09:50:50 -08:00 committed by Tom Dykstra
parent 35c06a3681
commit 005ecf896b
1 changed files with 1 additions and 1 deletions

View File

@ -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 <https://azure.microsoft.com/en-us/documentation/articles/vs-storage-aspnet5-getting-started-blobs/>* 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: