User-45723355 posted
Good afternoon everybody in here,
My name is Peter and I recently joined this forum to seek help in solving a problem I faced. There is a thread I discovered earlier this morning and i found it is similar to what I have been trying to do.
I am trying to know exactly where to place my declaration in the C# window of my work
For example, where can I put this statement ?
DECLARE @id INT
I found this while searching through google, and I had to trace it to this platform. So I applied it to my work and found that there were underlined errors in the declaration statement and the SET statement
DECLARE @userId INT
INSERT INTO User (Email, Pass, ....) VALUES ('aaaa@gmail.com', 'pass',.......)
SET @userId = @@IDENTITY
INSERT INTO Wallet (Uid, amount) VALUES (@MYID,0)
i also discovered that in getting this, I will have to create stored procedure but I don't want to use stored procedure in my work.
So please how and where do I place the statement in my C# window?
thank you