An XML file was saved into a SQL Server database with the following code:
USE XML
GO
INSERT ENTERTAINMENT (content)
SELECT * FROM
OPENROWSET(bulk 'c:\entertainment-jist.xml', single_blob ) AS X
The file was saved in a column with an xml datatype.
How can the whole content of this file be read in an asp.net page using C#?