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、ここでの最良の答えは、Web サービスでDataSet/を使用しないことです。DataTable個人的には、必要なプロパティを持つクラスを宣言し、好きなように属性を付けて、配列 ( T[]) またはList<T>その型を返します。
DataSet
DataTable
T[]
List<T>
はるかにクリーンで、xml をより詳細に制御でき、さまざまな種類のクライアント (.NET だけでなく) から使用できます。