WCF データ サービスを作成し、すべてが機能するようになりましたが、xml が必要な方法でフォーマットされておらず、余分なものをすべて削除する方法がわかりません。私が持っているものは次のとおりです。
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<entry xml:base="http://172.1.2.2/Database/DatabaseTables.svc/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
<id>http://172.1.2.2/Database/DatabaseTables.svc/Device('999')</id>
<title type="text"></title>
<updated>2013-05-14T18:17:10Z</updated>
<author>
<name />
</author>
<link rel="edit" title="Device" href="Device('999')" />
<category term="Model.Device" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
<content type="application/xml">
<m:properties>
<d:Device_Code>999</d:Device_Code>
<d:Short_name>TC2</d:Short_name>
</m:properties>
</content>
</entry>
私が欲しいのは:
<Device>
<Device_Code>999</Device_Code>
<Short_name>TC2</Short_name>
</Device>
name 属性をデータ コントラクトに既に追加しましたが、何も変更されませんでした。