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