将xml写入wcf以获取用于ssrs的Web服务

时间:2015-10-09 13:41:54

标签: xml linq web-services wcf reporting-services

我构建了linq查询并使用xDocument将其转换为xml。 这个问题是我设法只在本地创建它。

        XDocument document = new XDocument(
          new XElement("People",
                         from c in el
        join p in sl on c.eID equals p.sID
        select new XElement("Person", new XAttribute("ID", c.eID),
                     new XElement("Role", c.Role),
                     new XElement("RRCD", ConvertRole(c.cdRole) + c.cdRole),
                     new XElement("Department", p.department),
                     new XElement("Subject", p.subject))));
        document.Save("People.xml");
    }

我需要将它导出到web服务或wcf,只有这个选项会填充将用于ssrs的xml web服务,如何实现?

0 个答案:

没有答案