Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Web 服务签名是
[WebMethod] public DataSet GetPatientLastWeighing(int pFacilityID,string pSessionID) { }
DataSet您对/DataTable序列化没有太多控制权。IMO,这里最好的答案是:不要在网络服务上使用DataSet/ 。DataTable就个人而言,我会声明一个具有我需要的属性的类,根据我的喜好赋予它们属性,然后返回一个数组 ( T[]) 或List<T>该类型。
DataSet
DataTable
T[]
List<T>
更清晰的是,您可以更好地控制 xml,并且可以从不同类型的客户端(不仅仅是 .NET)使用它。