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
39 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
58 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
57 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
382 reads
I was recently working on some code where I needed to be able to go from an EntitySet name to...
2015-01-26
177 reads
Entity Framework 6 introduced some API hooks that you can use to monitor log queries that Entity Framework is generating...
2015-01-25
245 reads
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
BCA KCP Santa HUB.Tlpn.0821•3111•185 Jl. Wolter Monginsidi No.54, Petogogan, Kec. Kby. Baru, Kota Jakarta...
Telp/wa 085169998765 Jl. Kosasih No.24, Jetis Kauman, Parakan Kauman, Kec. Parakan, Kabupaten Temanggung, Jawa...
Jl. Letjen S. Parman No.Kav. 21 Lower Ground Lot. C 07, Slipi, Kec. Grogol...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers