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
80 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
80 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
34 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
40 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
44 reads
Whenever a piece of software does something that makes me think this is awesome I find myself blocking out the...
2015-03-19
50 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
52 reads
I was recently working on a page that does an AJAX post to an MVC controller passing quite a lot...
2015-01-28
245 reads
Interceptors in Entity Framework 6 allow you to hook in to before and after query events. The before events even...
2015-01-27
360 reads
I was recently working on some code where I needed to be able to go from an EntitySet name to...
2015-01-26
157 reads
Entity Framework 6 introduced some API hooks that you can use to monitor log queries that Entity Framework is generating...
2015-01-25
234 reads
By Steve Jones
I was testing the new SSMS (v22 Preview 3) with Copilot and ran into...
By Kevin3NF
Don’t Let Trouble Sneak Up on You Most SQL Servers run quietly. Until...
By Steve Jones
I had a conversation with a customer asking this question: how can I tell...
Comments posted to this topic are about the item Create an HTML Report on...
Hi I have a SP that occasionally get this error: Cannot resolve the collation...
Hi everyone I am getting an error when I create the index but I...
I have two calls to the GENERATE_SERIES TVF in this code:
SELECT TOP 10 gs.value FROM GENERATE_SERIES(1, 10) AS gs ORDER BY NEWID () OPTION (RECOMPILE); go DECLARE @a int = 10; SELECT TOP (@a) gs.value FROM GENERATE_SERIES(1, @a) AS gs ORDER BY NEWID () OPTION (RECOMPILE);In the actual query plans, what is the estimated number of rows for each batch in SQL Server 2022? See possible answers