ASP.NET 5 Multiple Projects and Global.json
This post is part of a series of posts on ASP.NET 5 the series index can be found here ASP.NET...
2015-05-20
84 reads
This post is part of a series of posts on ASP.NET 5 the series index can be found here ASP.NET...
2015-05-20
84 reads
In the last week or so I’ve published 2 ASP.NET 5 posts each building on top of the previous. I’ve...
2015-05-20
37 reads
This post is part of a series on ASP.NET 5, the index for this can be found here ASP.NET 5...
2015-05-19
44 reads
This post is part of a series of posts on ASP.NET 5 the series index can be found here ASP.NET...
2015-05-13
46 reads
Whenever a piece of software does something that makes me think this is awesome I find myself blocking out the...
2015-03-19
55 reads
At a recent Brighton Alt.Net the question came up “What learning resources do people use to continuously learn?”, as a...
2015-02-20
55 reads
I was recently working on a page that does an AJAX post to an MVC controller passing quite a lot...
2015-01-28
260 reads
Interceptors in Entity Framework 6 allow you to hook in to before and after query events. The before events even...
2015-01-27
369 reads
I was recently working on some code where I needed to be able to go from an EntitySet name to...
2015-01-26
175 reads
Entity Framework 6 introduced some API hooks that you can use to monitor log queries that Entity Framework is generating...
2015-01-25
243 reads
AWS recently added support for Post-Quantum Key Exchange for TLS in Application Load Balancer...
By Brian Kelley
If you don't have a plan, you'll accomplish it. That's not a good thing.
By Steve Jones
Today Redgate announced that we are partnering with Bregal Sagemount, a growth-focused private equity...
The year 2026 presents the strongest opportunity yet for people looking to earn extra...
Comments posted to this topic are about the item Where Your Value Separates You...
Comments posted to this topic are about the item Fixing the Error
On SQL Server 2025, I have a database that has this collation: SQL_Latin1_General_CP1_CI_AS. I decide I want to run this code:
SELECT UNISTR('*3041*308A*304C*3068 and good night', '*') AS 'A Classic';
I get this error:Msg 9844, Level 16, State 4, Line 24 The char/varchar input type uses an unsupported collation. Only a UTF8 collation is supported with char/varchar input type in UNISTR function.What is the easiest way to fix this error? See possible answers