Hi Telerik Team,
This is my sp in oracle.
create or replace PROCEDURE My_SP
(
Apara VARCHAR2,
Spara NUMBER,
Gpara DATE
)
as
begin
.....
end;
After I populate the SP in rlinq, here I use Update from Database method, and then try to call, the parameters are shown in descending order like:
Context cntx = new Context();
cntx.My_SP(
Spara, Gpara, Apara);
And when I call the SP, data mismatch error is occurred.
I believe you can reproduce this issue very easily. The link below is the same issue face by other
http://www.telerik.com/community/forums/orm/databases/oracle-stored-procedures.aspx
Regards,
Dave