Practical .NET


The 5 Essential Patterns in Xamarin Applications

There are five design patterns you'll use every time you create a smartphone application. One is imposed by the environment and one is a pattern that you've probably been avoiding when creating other kinds of applications.

Making Testing Worthwhile

That understanding should drive how you deal with testing, including how to turn it into a value-added task.

Generate Useful Documentation for Your Web API Project

If you want to impress your boss (or client) with your diligence in generating documentation for your Web Service, then you need Swagger. That it will also make it easier for you to run tests on your service and check for typical errors is just icing on the cake.

The Case Against Zero-Defect Software

Testing is a necessary but not a value-added task. To put it another way, while testing is something we have to do, our users would be just as happy if we could produce quality software without it. Understanding that leads to a realistic approach to testing.

Maximizing Your Paycheck

An economic model design to explain profit margins may seem like an odd place to look for career advice, but here are five forces that you can harness to increase how much you get paid.

'Hello World' for Your Smartphone: Your First Xamarin Application

Here's a step-by-step guide to creating a Xamarin project in Visual Studio 2017.

Choosing a Xamarin Strategy

Here's what you need to know before you create your first Xamarin application to run on a smartphone or a tablet.

Dealing with Unsafe DELETEs in RESTful Services

Your DELETE request to the service just timed out. Surely, it's safe to send it again. Actually, it may not be.

Dealing with Unsafe Methods in RESTful Services

Your update request to the service just timed out. Is it safe to send it again? Maybe. Here's how to ensure that all your update, delete and add requests are safe plus some advice on what you should really be calling them and handling concurrency.

Really Rest: Eliminating Documentation by Implementing HATEOAS

If you want to implement a fully "REST-compliant" application you should address a critical question: How do consumers know what URLs to use? What if all the consumer needed to know was how to use the HTTP protocol and a little common sense?

Your First Xamarin.Forms Project

If you've got a recent version of Visual Studio (Visual Studio 2017 Community Edition, for example) then you can start creating an Android application. Here's what you need to do to get your first project set up.

Moving to the Cloud: A Piecemeal Strategy

You can move all your applications to the cloud in one giant migration. You might even live. Peter thinks there's a better, smarter way and it doesn't start with your Web applications.

Leveraging Raw SQL in Entity Framework Core

The ability to use SQL with Entity Framework Core has always been a cool feature. There's a new feature in Entity Framework Core that opens the door for whole new set of SQL-related functionality.

High Performance Object-Oriented Data Access with Dapper

Entity Framework is fabulous ... but it does impose some overhead. If you like working with data in an O-O kind of way but feel the "need for speed," then you should be looking at Dapper.

Testing Precompiled Azure Functions Locally with Storage Emulator

If you're coding Azure Functions in Visual Studio 2017 to work with Azure Storage, one tool that can assist when running functions locally is the Microsoft Azure Storage Emulator, as shown in this hands-on tutorial.

Subscribe on YouTube