尝试使用 JsonConvert.SerializeObject 时从“ServerVersion”获取值时出错

本文关键字:ServerVersion 获取 出错 时从 JsonConvert SerializeObject | 更新日期: 2023-09-27 18:34:36

我有一个非常基本的代码,使用实体框架在我的 MVC C# .NET 控制器中获取模型。

var myModel = myContext.MyData
                .Where(m => m.ID == 1)
                .FirstOrDefault();
string json = Newtonsoft.Json.JsonConvert.SerializeObject(myModel);

当我尝试运行此代码时,出现错误:

System.Data.SqlClient上的ServerVersion获取值时出错。

。如果我按Continue,视图显示:

[无效操作

异常:无效操作。连接是 已关闭。

怎么了?SQL与此有什么关系?如果我在视图中而不是控制器中执行此操作,也会出现相同的错误。

编辑:

我的班级(模型(

namespace TrackerEntityFrameworks.Models
{
  public class MyData: DbContext
  {
    [Key]
    public int ID { get; set; }
    [Required]
    public string Name { get; set; }
    [Required]
    public DateTime StartTime { get; set; }
    [Required]
    public DateTime EndTime { get; set; }
    public ICollection<TripRecord> TripRecords { get; set; }
    public ICollection<TollRecord> TollRecords { get; set; }
  }
}

尝试使用 JsonConvert.SerializeObject 时从“ServerVersion”获取值时出错

您正在尝试序列化整个Dbcontext,不要这样做!

DbContext中删除MyData的继承,你应该没事。

你的业务类必须是"持久性无知的",以便可重用,并且实体框架以这种方式完美运行

将 DbContext 与实体分开,然后执行以下操作:

namespace TrackerEntityFrameworks.Structure
{
  public class MyContext: DbContext
  {
    public DbSet<TripRecord> TripRecords { get; set; }
    public DbSet<TollRecord> TollRecords { get; set; }
    public DbSet<MyData> MyDatas { get; set; }
  }
}
namespace TrackerEntityFrameworks.Models
{
  public class MyData
  {
    [Key]
    public int ID { get; set; }
    [Required]
    public string Name { get; set; }
    [Required]
    public DateTime StartTime { get; set; }
    [Required]
    public DateTime EndTime { get; set; }
    // navigation properties: check how to implement relationships in EF Code First
    public ICollection<TripRecord> TripRecords { get; set; }
    public ICollection<TollRecord> TollRecords { get; set; }
  }
}

using(var myContext = new TrackerEntityFrameworks.Structure.MyContext())
{
  var result = myContext.MyDatas
                  .Where(m => m.ID == 1)
                  .FirstOrDefault();
  string json = Newtonsoft.Json.JsonConvert.SerializeObject(result);
}

实体框架教程:http://www.entityframeworktutorial.net/code-first/entity-framework-code-first.aspx