ASP.NET MVC 2:反序列化 SPROC 响应
我需要问一个一般性问题。我面前没有代码,因为我是在 iPhone 上编写的。
我有一个代表特定 XML 模式的类。我有一个返回此 XML 的 SPROC。我需要做的是将 XML 反序列化到此类。
XML:
<xml>
<person>
<firstName>Bob</firstName>
<lastName>Robby</lastName>
</person>
</xml>
我需要将此 XML 反序列化到自定义 Person 类中,以便我可以循环此模型并将其吐出到视图中。我确信涉及某种选角,我只是不知道该怎么做。
I need to ask a general question. I don't have the code in front of me because I'm writing this on my iPhone.
I have a Class that represents a certain XML schema. I have a SPROC that returns this XML. What I need to do is deserialize the XML to this Class.
XML:
<xml>
<person>
<firstName>Bob</firstName>
<lastName>Robby</lastName>
</person>
</xml>
I need to deserialize this XML into the custom Person Class so I can loop through this Model and spit it out in the View. I'm sure there's some kind of casting involved, I just don't know how to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的解决方案:
和班级:
My Solution:
And Class:
在 linq 中它会是这样的
in linq it would be something like this