10 references to CommandTimeout
System.Data.Entity (10)
System\Data\Objects\Internal\ObjectQueryExecutionPlan.cs (2)
170
if (context.
CommandTimeout
.HasValue)
172
entityCommand.CommandTimeout = context.
CommandTimeout
.Value;
System\Data\Objects\ObjectContext.cs (8)
2367
_adapter.CommandTimeout = this.
CommandTimeout
;
2663
if (this.
CommandTimeout
.HasValue)
2665
entityCommand.CommandTimeout = this.
CommandTimeout
.Value;
3201
if (this.
CommandTimeout
.HasValue)
3203
command.CommandTimeout = this.
CommandTimeout
.Value;
3266
services.CreateDatabase(storeConnection, this.
CommandTimeout
, this.GetStoreItemCollection());
3277
services.DeleteDatabase(storeConnection, this.
CommandTimeout
, this.GetStoreItemCollection());
3288
return services.DatabaseExists(storeConnection, this.
CommandTimeout
, this.GetStoreItemCollection());