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
85 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
85 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
38 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
45 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
47 reads
Whenever a piece of software does something that makes me think this is awesome I find myself blocking out the...
2015-03-19
57 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
261 reads
Interceptors in Entity Framework 6 allow you to hook in to before and after query events. The before events even...
2015-01-27
373 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
244 reads
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
hi everyone I am not sure how to write the query that will produce...
I have some data in a table:
CREATE TABLE #test_data
(
id INT PRIMARY KEY,
name VARCHAR(100),
birth_date DATE
);
-- Step 2: Insert rows
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers