U2U - Blogs U2U - Blogs
  • Log in

Follow Trainings at U2U

Training on Visual Studio, Office 365, SharePoint, SQL Server, Dynamics 365, Power BI, JavaScript, Microsoft Azure and Xamarin.

Visit u2u.be | Course Catalog

BlogList

  • Diedrik De Mits
  • Peter Himschoot
  • Lieven Iliano
  • Nico Jacobs
  • Robrecht Van Caenegem
  • Michaël Van Wesemael
  • Tommy Vanhee
  • Lander Verhack

Category List

  • RSS feed for SubBlog .NET (21)
  • RSS feed for SubBlog .NET 4.0 (7)
  • RSS feed for SubBlog .NET Core (12)
  • RSS feed for SubBlog .NET Development (72)
  •     RSS feed for SubBlog WPF (26)
  • RSS feed for SubBlog Analysis Services (6)
  • RSS feed for SubBlog API Apps (4)
  • RSS feed for SubBlog AppFabric (3)
  • RSS feed for SubBlog Azure (27)
  • RSS feed for SubBlog Blazor (5)
  • RSS feed for SubBlog Business Intelligence (9)
  •     RSS feed for SubBlog Power BI (10)
  • RSS feed for SubBlog CAML (4)
  • RSS feed for SubBlog Data Mining (3)
  • RSS feed for SubBlog Domain Driven Design (3)
  • RSS feed for SubBlog Dynamics CRM (14)
  • RSS feed for SubBlog Enterprise Windows Apps (2)
  • RSS feed for SubBlog Entity Framework (5)
  • RSS feed for SubBlog Entity Framework 4.0 (8)
  • RSS feed for SubBlog Excel (3)
  • RSS feed for SubBlog Flow (6)
  •     RSS feed for SubBlog Business Intelligence (9)
  • RSS feed for SubBlog Images (2)
  • RSS feed for SubBlog JavaScript (4)
  •     RSS feed for SubBlog TypeScript (2)
  • RSS feed for SubBlog LINQ (7)
  • RSS feed for SubBlog Logic Apps (3)
  • RSS feed for SubBlog Metro (23)
  • RSS feed for SubBlog Mobile (3)
  •     RSS feed for SubBlog Xamarin (4)
  • RSS feed for SubBlog Multithreading (2)
  • RSS feed for SubBlog OBA (5)
  • RSS feed for SubBlog Office (4)
  • RSS feed for SubBlog Office 365 (8)
  • RSS feed for SubBlog Office Development (3)
  • RSS feed for SubBlog Paint.NET (4)
  • RSS feed for SubBlog Power BI (10)
  • RSS feed for SubBlog Power Platform (3)
  • RSS feed for SubBlog PowerApps (2)
  • RSS feed for SubBlog PowerShell (9)
  • RSS feed for SubBlog Reactive Programming (3)
  • RSS feed for SubBlog Reporting Services (3)
  • RSS feed for SubBlog Security (2)
  • RSS feed for SubBlog SharePoint (9)
  • RSS feed for SubBlog SharePoint Community Tools (12)
  • RSS feed for SubBlog SharePoint Development (3)
  •     RSS feed for SubBlog SPFx (2)
  • RSS feed for SubBlog SharePoint General (19)
  • RSS feed for SubBlog SharePoint Online (7)
  • RSS feed for SubBlog silverlight (10)
  • RSS feed for SubBlog Silverlight (7)
  • RSS feed for SubBlog Spatial (4)
  • RSS feed for SubBlog SQL Server (17)
  • RSS feed for SubBlog SQL Server BI (6)
  • RSS feed for SubBlog Stuff (6)
  • RSS feed for SubBlog Talks (2)
  • RSS feed for SubBlog Team System (10)
  • RSS feed for SubBlog Tools (8)
  • RSS feed for SubBlog TypeScript (2)
  • RSS feed for SubBlog Universal Windows Apps (14)
  • RSS feed for SubBlog UWP (11)
  • RSS feed for SubBlog Various Stuff (19)
  • RSS feed for SubBlog Visual State Manager (2)
  • RSS feed for SubBlog WCF (11)
  • RSS feed for SubBlog Web Development (3)
  •     RSS feed for SubBlog JavaScript (4)
  • RSS feed for SubBlog WF 4 (6)
  • RSS feed for SubBlog Windows 7 (2)
  • RSS feed for SubBlog Windows Phone (17)
  • RSS feed for SubBlog WinRT (46)
  • RSS feed for SubBlog WPF (26)
  • RSS feed for SubBlog WPF/Silverlight (8)
  • RSS feed for SubBlog Xamarin (4)
  • RSS feed for SubBlog XAML (6)

PostList

  • Semantic Kernel - Using JSON Mode with Azure OpenAI
  • Semantic Kernel Zero to Hero - Part 1: Developing with Large Language Models
  • Faking DbContext in Tests with NSubstitute
  • U2U Online V2.1 is here!
  • Using System.Text.Json Source Generator to Improve Performance
  • Using the Power Platform CLI with Power Pages
  • More happiness for the lazy developer: MS Graph toolkit with HTML
  • Bliss for the lazy developer : the MS Graph Toolkit
  • Faking DbContext in Tests with MOQ
  • ChatGPTs Singleton Implementation

Copyright © 2025

Powered by BlogEngine.NET

Designed by Francis Bio

Introducing Windows Azure Table Storage

06 July 2011 Peter-Himschoot .NET Development, VS2010, Azure
Windows Azure storage gives you several persistent and durables storage options. In this blog post I want to look at Table storage (which I prefer to call Entity storage because you can store any mix of entities  in these tables; so you can store products AND customers in the same table). For t... [More]

Debugging those nasty Windows Azure startup-code problems with IntelliTrace

03 July 2011 Peter-Himschoot .NET Development, Azure, VS2010
1. Introducing Intelli-Trace How do engineers figure out what caused a plane crash? One of the things they use is the black-box recording, which recorded all mayor data from the plane prior to the crash. This recording allows them to step back in time and analyze step-by-step what happened. Microso... [More]

Building a Storage Account helper class (and forget about it)

02 July 2011 Peter-Himschoot .NET Development, VS2010, Azure
When you use storage with the managed API’s, you always need to use a storage account, and make sure you setup the whole thing correctly. The way to do this is slightly different when building a web role versus a worker role, so I decided to tackle this problem by building a simple class that takes ... [More]

Running multiple sites in one Windows Azure Web Role

28 June 2011 Peter-Himschoot Azure, VS2010, .NET Development
Since the release of the Windows Azure SDK 1.3 it is possible to host multiple sites in one web role. In this blog post I will show you how to do this. 1. Creating the Azure project Start by creating a new Azure Cloud project. Add a single WebRole project (call it MultiSitesWebRole) to it: Hit ... [More]

Remote debugging a Windows Azure Worker Role using Azure Connect, Remote desktop and the remote debugger, part 3

27 June 2011 Peter-Himschoot .NET Development, Azure, VS2010
This is the third part of the “Remote debugging a Windows Azure Worker Role using Azure Connect, Remote desktop and the remote debugger”. In this part I will show you how to attach the remote debugger on your worker role and start debugging… Step 3: Connect to the remove debugger In the previous b... [More]

Remote debugging an Azure worker role using Azure Connect, remote desktop and remote debugger, part 2

25 June 2011 Peter-Himschoot
This is the second part of the “Remote debugging a Windows Azure Worker Role using Azure Connect, Remote desktop and the remote debugger”. In this part I will show you how to get the remote debugger on your worker role. Step 2: Copy the remote debugger on your worker role instance Start by creatin... [More]

Remote debugging an Azure Worker role, using Azure Connect, Remote desktop and the remote debugger

22 June 2011 Peter-Himschoot Azure, .NET Development, VS2010
So, you have some code running in a Windows Azure Worker role on Azure (not on the Azure Compute Emulator) and you need to debug what is going on. In this blog post I will show you how you can use Azure Connect, the remote desktop and the remote debugger to look inside your worker role. WARNING: t... [More]

Getting Started Developing on Azure: Creating the Hosted Service and Storage Account

20 June 2011 Peter-Himschoot .NET Development, Azure, VS2010
This is the next post on Getting Started developing on Azure with Visual Studio 2010 and Installing the Azure Management Certificates. Starting to develop on Azure with Visual Studio can be a lot to eat the first time. Getting Visual Studio ready, including installing the Management Certificates an... [More]

Installing the Azure Management Certificates

16 June 2011 Peter-Himschoot .NET Development, Azure, VS2010
This is the next post on Getting Started developing on Azure with Visual Studio 2010. Starting to develop on Azure with Visual Studio can be a lot to eat the first time. Getting Visual Studio ready, including installing the Management Certificates and so on is not a simple task (the first time anyw... [More]

Getting started developing on Azure with Visual Studio 2010

14 June 2011 Peter-Himschoot Azure, VS2010, .NET Development
Starting to develop on Azure with Visual Studio can be a lot to eat the first time. Getting Visual Studio ready, including installing the Management Certificates and so on is not a simple task (the first time anyway). So that is why I made this little walk-through series on starting to develop on Az... [More]
<< Older posts Newer posts >>
  • Newer posts
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • ...
  • 19
  • 20
  • Older posts