What do you understand by LINQ to XML?

devquora
devquora

Posted On: Feb 22, 2018

 

LINQ to XML has made loading of XML documents, querying and document modification easier. While using LINQ to XML, it is possible to save XML documents existing in memory to disk. It also eliminates the need for a developer to learn XML query language. There are 19 necessary classes to work with XML. To name a few- XAttribute, XCData, XComment, XElement, XName, XObject, object change. XTest, XDocument, XDocumentType, etc.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    LINQ Interview Questions

    What do you understand by LINQ?

    Language Integrated Query is the collection of standard query operators which adds query facilities into .NET framework..

    LINQ Interview Questions

    What are the three main components of LINQ?

    The three main components of LINQ are:Standard Query Operators: These are the extension methods that form the LINQ p..

    LINQ Interview Questions

    Explain what is select clause and where clause in LINQ?

    Select clause: the select clause selects the interesting aspects of the element by performing a projection on the col..