My problem is that I define a query with parameters in MS ACCESS and I do not see it in the data sources in Visual Studio 2015 .
The query is:
SELECT *
FROM (
SELECT *
FROM Ingresos,IngresosLin,PuenteContab
WHERE Ingresos.NroRecIng = IngresosLin.NroRecIng
And CtaDeuIng=Ctactb
And Ingresos.NroRecIng=?
) AS Rec, PuenteContab
WHERE MovIng = PuenteContab.Mvto;
Works correctly in Access . But I do not see it in Visual Studio because it is configured as a function and I do not have access to it for reports.
Any suggestions?