Is there a way to query an Xml
column in SQL Server using Linq-to-SQL?
I want to be able to do contains or Like operator on specific nodes in the XML.
Is there a way to query an Xml
column in SQL Server using Linq-to-SQL?
I want to be able to do contains or Like operator on specific nodes in the XML.
It seems, there is no direct/easy way in which you query xml column of database that too using XPath apis, apart from contains/like construct, which gets applied to string content of the xml.