Recetas rápidas
Una serie con recetas que pueden realizarse, de principio a fin - sin tener nada preparado previamente- en el tiempo real del programa. Platos elaborados, dirigidos a un público joven que disfruta de la cocina pero que no tiene mucho tiempo para dedicarle. Esta serie le dará a nuestros televidentes la posibilidad de cocinar una receta gourmet en 20 minutos.
Próximas Emisiones:
Domingo 26 de Mayo
16:00 hs.
Lunes 27 de Mayo
00:00 hs.
- 15:30 hs.
Miercoles 29 de Mayo
13:30 hs.
Jueves 30 de Mayo
00:30 hs.
- 19:30 hs.
Sábado 01 de Junio
15:30 hs.
Domingo 02 de Junio
16:00 hs.
Lunes 03 de Junio
00:00 hs.
- 15:30 hs.
Enviar mail al programa
SELECT
RecId,
Titulo,
youtubeID,
(select u.Nombre from URL_RECETAS u where u.RecId=ResultadoPaginado.recId) as Titulo_amigable,
(select c.CocineroNombre+' '+CocineroApellido from COCINEROS c where c.CocineroID=ResultadoPaginado.CocineroID) as chef,
(select cast(l.Programa as varchar(max)) as Programa from LSTPROG l where l.PID=ResultadoPaginado.ProgramaID) as programa,
(select (select u.Nombre from URL_COCINEROS u where u.CocineroID=ResultadoPaginado.CocineroID) as chef_amigable from RECETAS r where r.RecId=ResultadoPaginado.RecId) as chef_amigable,
(select (select u.Nombre from URL_PROGRAMAS u where u.PID=ResultadoPaginado.ProgramaID) from RECETAS r where r.RecId=ResultadoPaginado.RecId) as programa_amigable,
CASE
WHEN (select top 1 f.ruta from FOTOS_RECETAS f where f.RecId=ResultadoPaginado.RecId and f.ruta!='') IS NULL THEN 'elgourmet.jpg'
else (select top 1 f.ruta from FOTOS_RECETAS f where f.RecId=ResultadoPaginado.RecId)
END
as foto,
RowNum
FROM
(
SELECT ROW_NUMBER()Over(Order by (select distinct f.ruta from fotos_recetas f where f.RecId=r.RecId) desc) As RowNum,
r.RecId ,
r.Titulo,
r.youtubeID,
r.CocineroID,
r.ProgramaID
FROM RECETAS r
WHERE r.ProgramaID='A54OEB9EGPROGA6IsxwC' and ocultar=0
)
AS ResultadoPaginado
WHERE RowNum > 0 and RowNum <= 6