Want to receive every Tuesday the best .NET links?
Once subscribed you can login, submit a link and receive the weekly newsletter.
by bill-s, 2018-11-09T07:11:45.117Z
During my everyday work, I use Entity Framework. It is very convenient, but in some cases, its performance is slow. Despite there being lots of good articles on EF performance improvements, and some very good and useful advice is given (e.g., avoid complex queries, parameters in Skip and Take, use views, select needed fields only, etc.), not that much can really be done when you need to use complex Contains on two or more fields—in other words, when you join data to a memory list.by bill-s, 2018-11-09T07:20:04.243Z
Since we shipped .NET Standard 2.0 about a year ago, we’ve shipped two updates to .NET Core 2.1 and are about to release .NET Core 2.2. It’s time to update the standard to include some of the new concepts as well as a number of small improvements that make your life easier across the various implementations of .NET.by tpeczek, 2018-11-09T10:20:08.483Z
Information about Azure Functions 2.0 extensibility are available, but scattered. This post attempts to gather the key aspects.by bill-s, 2018-11-09T07:16:19.442Z
This is the first part in a series demonstrating how to setup continuous deployment of an Azure Functions App using Azure DevOps build and release pipelines.by bill-s, 2018-11-09T07:18:55.036Z
I'm really pleased to announce that my latest Pluralsight course has just been released: Microsoft Azure Developer: Deploying and Managing Containers. And the great thing is that you can watch it free even if you're not a Pluralsight subscriber! This is because it's being made available as part of the superb Microsoft Learn platform.by bill-s, 2018-11-09T07:25:14.078Z
I am writing this post to let you all know that there is an awesome free E-Book available for Azure tips and tricks.by bill-s, 2018-11-09T07:26:05.098Z
At the start of this year, I put together a detailed guide on using JWT authentication with ASP.NET Core Web API and Angular. At 120+ comments, it is currently the busiest page on this tiny corner of the internet which is perhaps indicative of the challenges many developers face while hooking up authentication.by elmira_dam, 2018-11-14T09:02:24.897Z
This time on the Eat Sleep Code podcast, we talk to Microsoft's John Alexander about exciting new Machine Learning libraries for .NET.by bill-s, 2018-11-09T07:24:40.426Z
In December I’m speaking in the lovely city Ljubljana in Slovenia – taking C# and Blazor with me. Next year I’m again speaking at the BASTA! conference in Frankfurt, Germany. In the next months I’m speaking at conferences in Ljubljana, Slovenia, and Frankfurt, Germany – taking C# and Blazor with me.by bill-s, 2018-11-09T07:28:43.969Z
This week, Sophie Alpert and I presented the “Hooks” proposal at React Conf, followed by a deep dive from Ryan Florence:by jmezach, 2018-11-12T16:14:36.393Z
This post is part of a series: Part 1: Introduction Part 2: Third party dependencies Part 3: Mechanics of porting Part 4: Deployment and packaging options If you haven’t read the first post yet I suggest reading that first since it introduces the app that I’m porting and some of the reasons behind it. Are my dependencies available on .NET Core? Most software these days consists of not just the code we write, but a lot of third party dependencies as well.by elmira_dam, 2018-11-13T09:26:26.657Z
Andrew Lock, the author of the new book ASP.NET Core in Action, has graciously allowed us to repost his recent article about an issue he had with a "missing connection string" error in a new ASP.NET Core application running in Docker. In the article, not only does he cover basic background of environments in ASP.NET Core, he also describes how you would use environment-specific configuration. He describes the bug and provides his solution.by bill-s, 2018-11-09T07:28:29.180Z
Here’s a quick summary of the concepts in VueJS:by bill-s, 2018-11-09T07:32:37.029Z
JavaScript is one of the most popular programming languages in the world, and is now widely used also outside of the browser. The rise of Node.js in the last few years unlocked back-end development - once the domain of Java, Ruby, Python, PHP, and more traditional server-side languages.