0

将 MySql 与 Entity 框架一起使用时出现以下错误。我在 EntityConnectionStringBuilder 的连接字符串上将默认连接超时设置为 300000。如何在实体框架中解决这个问题?

    Unhandled Exception: System.Data.EntityCommandExecutionException: An    
    error occurred while reading from the store provider's data reader. See the  
    inner exception for details. ---> MySql.Data.MySqlClient.MySqlException: Fatal 
    error encountered during data read. ---> MySql.Data.MySqlClient.MySqlException: 
    Reading from the stream has failed. ---> System.IO.EndOfStreamException: Attempted 
    to read past the end of the stream.

更新:我们如何为 ado.net 实体框架设置 net_read_timeout?

4

2 回答 2

2

像这样

data.Database.ExecuteSqlCommand("set net_write_timeout=99999; set net_read_timeout=99999");
于 2012-10-17T19:26:14.670 回答
0

内部异常说什么?

未处理的异常:System.Data.EntityCommandExecutionException 不指向超时错误,它可能是简单的 int,需要在您的 EF 查询中使用为空。

你能把查询发给吗?

干杯

于 2012-08-22T14:43:08.370 回答