Buen dia, soy estudiante de Analista en Sistemas y estoy teniendo un problemita.
Desde Visual Studio en c# necesito traer desde SQL una tabla y un parámetro de salida.
Intenté con un ExecuteReader pero no me permite traer el parámetro , calculo que es con el ExecuteNonQuery pero no se como traer el Select.
Create Procedure TotalMensual
@Mes int,
@Año int,
@Total int OUTPUT
AS
BEGIN
Select p.nomPel, Sum(a.costoAlq) as 'Total' From Alquiler a inner join Pelicula p
On p.idPel = a.idPel
Where Month(a.fechaIniAlq) = @Mes AND YEAR(a.fechaIniAlq) = @Año
Group By p.nomPel
Select @total = SUM(costoAlq) from Alquiler Where Month(fechaIniAlq) = @Mes AND YEAR(fechaIniAlq) = @Año
END
GO
Desde ya muchas gracias