PrepAway - Latest Free Exam Questions & Answers

How should you complete the relevant code?

DRAG DROP
You are developing an application that will populate an extensive XML tree from a Microsoft
SQL Server 2008 R2 database table named Contacts.
You are creating the XML tree. The solution must meet the following requirements:
Minimize memory requirements.
Maximize data processing speed.
You open the database connection.
You need to create the XML tree.
How should you complete the relevant code? (To answer, drag the appropriate code
segments to the correct locations in the answer area. Each code segment may be used
once, more than once, or not at all. You may need to drag the split bar between panes or
scroll to view content.)

PrepAway - Latest Free Exam Questions & Answers

Answer:

9 Comments on “How should you complete the relevant code?

  1. 宾宾 says:

    I think the answer is this.

    XNamespace ew = “ContactList”;
    XElement root = new XElement(ew + “Root”);

    Console.WriteLine(root);
    XElement contact = new XElement(“contacts”,
    //XAttribute contacts = new XAttribute(“contacts”,
    from c in list
    orderby c.ContactId
    select new XElement(“contact”, new XAttribute(“contactId”, c.ContactId),
    new XElement(“firstName”, c.FirstName),
    new XElement(“lastName”, c.LastName))
    );

    root.Add(contact);




    1



    0

Leave a Reply