UUID v7 coming in .NET 9

by Jul 10, 2024

UUID v7 coming in .NET 9

For those that didn’t know, you can create Guids in different ways (algorithms).

System.Guid supports UUID v4 out-of-the-box, the most used version.

UUID v7 is now added, which creates Guids based on the current time. This means Guids can be sorted, which is more index friendly for databases (=faster).

SQL Server already has the alternative NEWSEQUENTIALID() for ages to fix the sorting problem in the database.

But now .NET 9 will natively support UUID v7, complete with timestamps!

You can create Guids as UUID v4 using the new CreateVersion7() method:

πšŸπšŠπš›β€‚πšπšžπš’πšπŸ·β€‚=β€‚π™Άπšžπš’πš.π™²πš›πšŽπšŠπšπšŽπš…πšŽπš›πšœπš’πš˜πš—πŸ½();

πšŸπšŠπš›β€‚πšπšžπš’πšπŸ·β€‚=β€‚π™Άπšžπš’πš.π™²πš›πšŽπšŠπšπšŽπš…πšŽπš›πšœπš’πš˜πš—πŸ½(π™³πšŠπšπšŽπšƒπš’πš–πšŽπ™ΎπšπšπšœπšŽπš.πš„πšπšŒπ™½πš˜πš );

Now you can created sorted Guids in .NET!

#
Remy van Duijkeren

Remy van Duijkeren

Power Platform Advisor

Microsoft Power Platform Advisor with over 25 years of experience in IT with a focus on (marketing) automation and integration.

Helping organizations with scaling their business by automating processes on the Power Platform (Dynamics 365).

Expert in Power Platform, Dynamics 365 (Marketing & Sales) and Azure Integration Services. Giving advice and strategy consultancy.

Services:
– Strategy and tactics advise
– Automating and integrating

Subscribe to
The Daily Friction

A daily newsletter on automation and eliminating friction

Related Content

Progressive Enhancement for JS is overrated.

Progressive Enhancement for JS is overrated. In today’s web, HTML + CSS + JS is a package deal. Almost every browser supports the trio, and let’s be real: users expect apps to work smoothly with JavaScript. 95%+ of users have JS enabled – why build for the exception?...

read more

Alpine.js just clicked. 🎯

Alpine.js just clicked. 🎯 Its declarative syntaxβ€”attributes on HTML tagsβ€”is perfect for simple UI logic. Most of the time, I don’t even need to touch JavaScript. And when I do? I can write just a little bit, and it fits right in. What’s even better? The declarative...

read more

HTMX + ASPNET Core Razor = magic. ✨

HTMX + ASPNET Core Razor = magic. ✨ But HyperScript? Not so much. πŸ˜… As a developer, I gave HyperScript a try for client-side interactions. I really wanted to love itβ€”especially since it’s from the same creator as HTMX. But every time I used it, I spent way too much...

read more