How to serialize an IList<T>?

删除回忆录丶 提交于 2019-11-28 02:44:45

问题


I've got an OR mapper (iBatis.Net) that returns an IList.

// IList<T> QueryForList<T>(string statementName, object parameterObject);
var data = mapper.QueryForList<Something>(statement, parameters);

I'm trying to use it in an webservice an want to return the data 1:1. Of course I can't return IList in a WebMethod, because it is an interface and therefore not serializable.

I found that the mapper is really returning an List. But I'm afraid to cast it to List because of course the mappers inner workings could change in future versions (and it just feels dirty).

So should I ...

a) return new List<Something>(data);

b) return (List<Something>)data;

c) // your solution here

Thanks a lot!


回答1:


If it really is a List<T> but you want to protect against change and have it still work, then the most performant solution will be to attempt to cast it to a list, and if that fails then create a new list from its content, e.g.

var data = mapper.QueryForList<T>(statement, parameters);
var list = data as List<T> ?? new List<T>(data);

However, you mention that you can't return an interface because it's a web service. This may have been true with ASMX and the XmlSerializer class, but if you build the web service using WCF and use the DataContractSerializer then it will happily serialize collection interfaces (both as inputs to and outputs from the service). That type of change may be somewhat larger than you're looking for though!




回答2:


Why should you serialize IList :) Just use it as a source for your own collection and serialize it:

var data = mapper.QueryForList<T>(statement, parameters);
var yourList = new List<T>(data);
//Serialize yourList here ))



回答3:


I don't think you need a c). It should be pretty safe to use solution a).

This solution depends on the public api of IBatis.net. Good api's don't change their public api unless it's really the only solution to a mission critical problem

Hope this helps.



来源:https://stackoverflow.com/questions/464525/how-to-serialize-an-ilistt

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!