私のEFモデルの基本クラスを使用してWCFデータサービスを作成しました。WCFデータサービスとEFでカスタムタイプを使用する方法
私は、カスタムタイプ(私のEFモデルではないもの)を返したかったが、私はエラーを取得:
どうpublic class MyCustomClass
{
public string CustomProp { get; set; }
public List<int> Ids { get; set; }
}
:
The server encountered an error processing the request. Please see the service help
page for constructing valid requests to the service.
マイカスタムクラスは次のようになります私はこの仕事をすることができますか?
:そう同様
– Darcy