我使用jQuery ajax调用Web服务。我收到内部服务器错误。
[WebGet(ResponseFormat=WebMessageFormat.Json)]
[OperationContract]
public List<BrandModel> DoWork(int brandId)
{
// here a receive a generic list of BrandModel by calling the static method FillModels.
List<BrandModel> models = DA.SupportData.FillModels(brandId);
return models;
}
我试图省略调用数据访问层的语句并返回在doWork方法中创建的通用列表并且它有效。