我正在使用 DbContext 并希望设置 CommandTimeout = 1 周。CommandTimeout 的最大超时值是多少?
((IObjectContextAdapter)this.context).ObjectContext.CommandTimeout = ?max?;
在连接字符串中,我还需要设置最大超时值。我可以设置的最大连接超时值是多少?
<connectionStrings>
<add name="TestEntities" connectionString="metadata=res://*/MyModel.csdl|res://*/MyModel.ssdl|res://*/MyModel.msl;provider=System.Data.SqlClient;provider connection string="data source=.;initial catalog=DBTest;user id=sa;password=p/w; Connect Timeout=?max?; MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>