You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my sql procedure return two tables individually with in a stored procedure. But FEcore power tools on vs 2022 c# .netcore 9, in models code (properities) generates for 1st table columns only. unable find out for second table columns properties. here example of procedure.
CREATE PROCEDURE [dbo].GetCustomerService
as
begin
Select customerid,customername,customeraddress where tblcustomermaster
select billid, billno,customerid,billdate, billamount from tblservicebill
end
The text was updated successfully, but these errors were encountered:
In my sql procedure return two tables individually with in a stored procedure. But FEcore power tools on vs 2022 c# .netcore 9, in models code (properities) generates for 1st table columns only. unable find out for second table columns properties. here example of procedure.
CREATE PROCEDURE [dbo].GetCustomerService
as
begin
Select customerid,customername,customeraddress where tblcustomermaster
select billid, billno,customerid,billdate, billamount from tblservicebill
end
The text was updated successfully, but these errors were encountered: