Odata:没有错误的空白页面

时间:2015-12-22 17:20:09

标签: c# asp.net-web-api odata

我有这些模型:

杂志

execute()

public class Magazine
{
    [Key]
    publicint id { get; set; }
    [Required]
    public DateTime Time { get; set; }

    public virtual MagazineType Type { get; set; }
}

我使用VS

自动生成odata控制器
public class MagazineType
{
        [Key]
        public int id { get; set; }
        [Required]
        publicstring Name { get; set; }

        public virtual List<Magazine> Magazines { get; set; }
}

这是我的元数据。当我从调用Api的控制器进行调试时,它会触及它应该执行的功能。我确信数据来自数据库。但是,会出现一个空白页面,没有错误或数据。

问候。

更新

在inspect元素部分中,它给出了以下错误:

  

无法加载资源:服务器响应状态为406(不可接受)

0 个答案:

没有答案