dotNET Weekly
Add a link
LoginRegister
PrevJanuary 2019Next
WSMTWTFS
1303112345
26789101112
313141516171819
420212223242526
5272829303112

Want to receive every Tuesday the best .NET links?

Once subscribed you can login, submit a link and receive the weekly newsletter.

Join more than 4847 .NET professionals!

File Upload in ASP.NET Core

by bill-s, 2018-12-29T11:38:29.670Z

In one of the .NET Core trainings I was conducting recently, one of my students asked about uploading files using .NET Core application. Here's a solution. When we use ASP.NET MVC to upload a file, we use the HttpPostedFileBase class. This class is used to access the files uploaded by the client in an MVC application. In .NET Core, the IFromFile interface is used to represent a file that is sent with the HttpRequest. In this article we will use the IFromFile interface to upload the file. We will use Visual Studio 2017 and .NET Core 2.1. Information about the IFromFile interface can be read from this link.

asp.net-core

Using Polly and Flurl to improve your website

by jeremylindsay, 2019-01-01T09:35:43.523Z

This post is about how to use The Polly Project to make a .NET website better. I use Flurl to consume Restful web services so I’ve some Flurl specific code later on, but I hope this post is useful to anyone who’s interested in learning what Polly is, what it’s for and how it can help you.

.netc#

Why a func delegate in c# is not be translated to sql commands

by karthikchintala, 2018-12-29T03:53:47.663Z

This post explains why a Func delegate is not translated to appropriate SQL commands as one would except. The article also draws some source code from Microsoft reference source code to explain what happened when .Where() method is invoked on a func delegate.

.netc#visual-studio

NewslettersAboutPrivacy Policy