I have a repository file in which we have created object context of entity type and not of ObjectContext
class type
public class ShopRepository : GenericRepository<tbl_Shop>
{
// Entity Framework context to the database
private DBEntities _contextObject;
public ShopRepository(DBEntities context)
: base(context)
{
this._contextObject = context;
}
}
I need to set command timeout property. Can someone help me