dotNET Weekly
Add a link
LoginRegister
PrevJanuary 2017Next
WSMTWTFS
5325262728293031
11234567
2891011121314
315161718192021
422232425262728
52930311234

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!

Alt.Net Talks 2016.12 : Akka.Net, Async/Await, .NET Core, Micro-ORMs and EFCore

by bill-s, 2016-12-31T03:31:13.000Z

Just a few days before the new year, Alt.Net France in Paris hosted three lightning talks. The meetup was animated by Rui Carvalho

Creating a WebSockes Middleware for ASP.NET Core

by bill-s, 2016-12-31T03:27:09.000Z

With WebSockets, you can send data between the server and the client over a single TCP connection, and usually WebSockets are used to provide real-time functionality to modern applications.

Data Points - EF Core 1.1: A Few of My Favorite Things

by bill-s, 2016-12-31T11:14:57.000Z

As I’m writing this column (in November 2016), Entity Framework (EF) Core 1.1 was just released. Between the 1.0 release and 1.1, a few significant things happened. In particular, the 1.0.1 patch fixed some critical bugs that were discovered just as 1.0 was being released. For a detailed list of those fixes, you can read the release notes at <a href="http://bit.ly/2fl5xNE">bit.ly/2fl5xNE</a>. While most of these fixes relate to how LINQ queries are transformed to SQL, there are also fixes to the model builder, persistence via SaveChanges and migrations.

Essential .NET - Essential MSBuild: A Build Engine Overview for .NET Tooling

by bill-s, 2016-12-31T11:16:25.000Z

Those of you who have been following .NET Core over the past few years (has it been that long?) know all too well that the “build system” has experienced a significant amount of flux, whether it be dropping built-in support for gulp or the demise of Project.json. For me as a columnist, these changes have been challenging as I didn’t want you, my dear readers, to spend too much time learning about features and details that ultimately were only going to be around for a few months. This is why, for example, all my .NET Core-related articles were built on Visual Studio .NET 4.6-based *.CSPROJ files that referenced NuGet packages from .NET Core rather than actually compiled .NET Core projects.

Five Methods To Deal With Errors In ASP.NET Core

by bill-s, 2016-12-31T03:25:22.000Z

Error handling is a common practice in any real-world web application. In ASP.NET Web Forms you used certain events and custom error pages to deal with them.

Getting started with Azure Functions and using them within Logic Apps

by bill-s, 2016-12-31T03:33:00.000Z

In this blog post, we will discuss an Azure Service called Azure Functions and how we can use them within a Logic App.

How to develop an Office App in real world

by bill-s, 2016-12-31T03:23:32.000Z

Here’s my short How To for working with Visual Studio and Office Apps with helpful tips.

Introducing a new Markdown View Engine for ASP.NET Core

by bill-s, 2016-12-31T03:25:06.000Z

ASP.NET Core shipped with a default view engine that called Razor which is of course is the view engine that knew and love from the previous version of ASP.NET.

Machine learning algorithm cheat sheet for Microsoft Azure Machine Learning Studio

by bill-s, 2016-12-31T03:21:26.000Z

The Microsoft Azure Machine Learning Algorithm Cheat Sheet helps you choose the right algorithm for a predictive analytics model.

New Year’s Resolution: Learn Docker

by bill-s, 2016-12-31T03:26:25.000Z

Remember last year when I said the market for Docker jobs was blowing up? Well, it’s more than doubled in the last year.

Performance comparison of different data pipelines in .NET

by bill-s, 2016-12-31T03:29:18.000Z

I asked myself; which data pipeline has the lowest overhead?

Sending Proactive Botframework Messages

by bill-s, 2016-12-31T03:27:26.000Z

Having a botframework chatbot up and running and responding to user messages is one thing, but how can you send a new message to bring the user back into the conversation if they haven’t just sent a new message for you to reply to?

Service Bus, .NET Standard, and Open Source

by bill-s, 2016-12-31T03:32:30.000Z

We have received a lot of feedback that our users want to see a Service Bus .NET Core implementation. Today, I am excited to announce that we now have a .NET Standard client that is hosted on GitHub. Happy Holidays!

Writing Visual Studio 2015 Extensions? You’ll want these Templates

by bill-s, 2016-12-31T03:25:52.000Z

Mario Hsiao recently released this great pack of Visual Studio Extension/Extensibility Project and Item Templates, ones that if you’re an Extension author you’ll want immediately

Top 5 Challenges in Test Automatio

by bill-s, 2016-12-31T03:28:20.000Z

These challenges aren't the only ones in test automation, but they're common. If we don’t have solutions to overcome them, test automation projects can result in failure.

Using Azure App Service Authentication with ASP.NET (Classic) MVC Applications

by bill-s, 2016-12-31T11:15:43.000Z

Azure App Service has a facility called “Authentication / Authorization” and it assists primarily with the authentication requirements of Azure Mobile Apps. However, you can also use this in your web applications to abstract away the authentication needs. This makes it easy to integrate Facebook, Google, Microsoft Account, Twitter and Azure AD authentication schemes. This blog post will go through the process of configuring an ASP.NET MVC application to use Azure App Service Authentication.

Creating a WebSockes Middleware for ASP.NET Core

by bill-s, 2016-12-31T03:27:09.000Z

With WebSockets, you can send data between the server and the client over a single TCP connection, and usually WebSockets are used to provide real-time functionality to modern applications.

Data Points - EF Core 1.1: A Few of My Favorite Things

by bill-s, 2016-12-31T11:14:57.000Z

As I’m writing this column (in November 2016), Entity Framework (EF) Core 1.1 was just released. Between the 1.0 release and 1.1, a few significant things happened. In particular, the 1.0.1 patch fixed some critical bugs that were discovered just as 1.0 was being released. For a detailed list of those fixes, you can read the release notes at <a href="http://bit.ly/2fl5xNE">bit.ly/2fl5xNE</a>. While most of these fixes relate to how LINQ queries are transformed to SQL, there are also fixes to the model builder, persistence via SaveChanges and migrations.

Alt.Net Talks 2016.12 : Akka.Net, Async/Await, .NET Core, Micro-ORMs and EFCore

by bill-s, 2016-12-31T03:31:13.000Z

Just a few days before the new year, Alt.Net France in Paris hosted three lightning talks. The meetup was animated by Rui Carvalho

Essential .NET - Essential MSBuild: A Build Engine Overview for .NET Tooling

by bill-s, 2016-12-31T11:16:25.000Z

Those of you who have been following .NET Core over the past few years (has it been that long?) know all too well that the “build system” has experienced a significant amount of flux, whether it be dropping built-in support for gulp or the demise of Project.json. For me as a columnist, these changes have been challenging as I didn’t want you, my dear readers, to spend too much time learning about features and details that ultimately were only going to be around for a few months. This is why, for example, all my .NET Core-related articles were built on Visual Studio .NET 4.6-based *.CSPROJ files that referenced NuGet packages from .NET Core rather than actually compiled .NET Core projects.

Five Methods To Deal With Errors In ASP.NET Core

by bill-s, 2016-12-31T03:25:22.000Z

Error handling is a common practice in any real-world web application. In ASP.NET Web Forms you used certain events and custom error pages to deal with them.

How to develop an Office App in real world

by bill-s, 2016-12-31T03:23:32.000Z

Here’s my short How To for working with Visual Studio and Office Apps with helpful tips.

Getting started with Azure Functions and using them within Logic Apps

by bill-s, 2016-12-31T03:33:00.000Z

In this blog post, we will discuss an Azure Service called Azure Functions and how we can use them within a Logic App.

Introducing a new Markdown View Engine for ASP.NET Core

by bill-s, 2016-12-31T03:25:06.000Z

ASP.NET Core shipped with a default view engine that called Razor which is of course is the view engine that knew and love from the previous version of ASP.NET.

Machine learning algorithm cheat sheet for Microsoft Azure Machine Learning Studio

by bill-s, 2016-12-31T03:21:26.000Z

The Microsoft Azure Machine Learning Algorithm Cheat Sheet helps you choose the right algorithm for a predictive analytics model.

Sending Proactive Botframework Messages

by bill-s, 2016-12-31T03:27:26.000Z

Having a botframework chatbot up and running and responding to user messages is one thing, but how can you send a new message to bring the user back into the conversation if they haven’t just sent a new message for you to reply to?

New Year’s Resolution: Learn Docker

by bill-s, 2016-12-31T03:26:25.000Z

Remember last year when I said the market for Docker jobs was blowing up? Well, it’s more than doubled in the last year.

Service Bus, .NET Standard, and Open Source

by bill-s, 2016-12-31T03:32:30.000Z

We have received a lot of feedback that our users want to see a Service Bus .NET Core implementation. Today, I am excited to announce that we now have a .NET Standard client that is hosted on GitHub. Happy Holidays!

Performance comparison of different data pipelines in .NET

by bill-s, 2016-12-31T03:29:18.000Z

I asked myself; which data pipeline has the lowest overhead?

Top 5 Challenges in Test Automatio

by bill-s, 2016-12-31T03:28:20.000Z

These challenges aren't the only ones in test automation, but they're common. If we don’t have solutions to overcome them, test automation projects can result in failure.

Using Azure App Service Authentication with ASP.NET (Classic) MVC Applications

by bill-s, 2016-12-31T11:15:43.000Z

Azure App Service has a facility called “Authentication / Authorization” and it assists primarily with the authentication requirements of Azure Mobile Apps. However, you can also use this in your web applications to abstract away the authentication needs. This makes it easy to integrate Facebook, Google, Microsoft Account, Twitter and Azure AD authentication schemes. This blog post will go through the process of configuring an ASP.NET MVC application to use Azure App Service Authentication.

Writing Visual Studio 2015 Extensions? You’ll want these Templates

by bill-s, 2016-12-31T03:25:52.000Z

Mario Hsiao recently released this great pack of Visual Studio Extension/Extensibility Project and Item Templates, ones that if you’re an Extension author you’ll want immediately

NewslettersAboutPrivacy Policy