Introduction
Today, in this article let's play around with one of the interesting and most useful concepts in LINQ to XML.
Question: What is delete data from XML using LINQ to XML?
In simple terms "It provides flexibility to delete data from XML with the help of a LINQ query."
Step 1: Create a new "ASP.NET Web Application", as in

Step 2: The complete code of Employee.xml looks like this
- <?xml version="1.0" encoding="utf-8"?>
- <Employees>
- <Employee>
- <Id>1</Id>
- <FirstName>Vijay</FirstName>
- <LastName>Prativadi</LastName>
- <Age>26</Age>
- </Employee>
- <Employee>
- <Id>2</Id>
- <FirstName>Sandeep</FirstName>
- <LastName>Reddy</LastName>
- <Age>28</Age>
- </Employee>
- </Employees>
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="LINQtoXMLDeleteApp.WebForm1" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head id="Head1" runat="server">
- <title></title>
- </head>
- <body>
- <form id="form1" runat="server">
- <center>
- <div>
- <table>
- <tr>
- <td colspan="2" align="center">
- <asp:Label ID="Label1" runat="server" Text="Delete Data using LINQ-to-XML" Font-Bold="true"
- Font-Size="Large" Font-Names="Verdana" ForeColor="Maroon"></asp:Label>
- </td>
- </tr>
- <tr>
- <td>
- <asp:Label ID="Label6" runat="server" Text="Please Enter Id" Font-Size="Large" Font-Names="Verdana"
- Font-Italic="true"></asp:Label>
- </td>
- <td>
- <asp:TextBox ID="TextBox4" runat="server"></asp:TextBox>
- </td>
- </tr>
- <tr>
- <td colspan="2" align="center">
- <asp:Button ID="Button1" runat="server" Text="Delete Data" Font-Names="Verdana" Width="213px"
- BackColor="Orange" Font-Bold="True" OnClick="Button1_Click" />
- </td>
- </tr>
- <tr>
- <td colspan="2" align="center">
- <asp:Label ID="Label5" runat="server" Font-Bold="true" Font-Names="Verdana"></asp:Label>
- </td>
- </tr>
- </table>
- </div>
- </center>
- </form>
- </body>
- </html>



sarath kumarPosted Jan 19, 2019, 3:55 AM
Why finally get one more <Employee /> it should be occur , Once delete the Node finally got the Extra tag i want to know this..? any one can Explain this