XML Representing Relational Database Data and Using XPath to Get Results

we have a relational database with some data and we need to offer the database content through XML web services. We also need to allow users to get parts of the XML representation using XPath (it may also later be necessary to indirectly modify the data using the XML representation of the data using XQuery). Is there an easy way to achieve this in C #? The user will know the XML schema of the data.

Keywords for web searches are also evaluated.

+2


a source to share


2 answers


Reading OData;) is much better than bad webservices. Full instrumentation support in .NET (integrated with LINQ) is a semantic way of presenting data through Intelligent Web Services.



+2


a source


There are several ways that I discovered, although I couldn't find much data.



One is to use a SQL query that returns XML and the other is to use a DataSet class with some XML processing capabilities. The DataSet also supports XPath queries.

0


a source







All Articles