Can you please give me the idea about Auto generated Id For Student In c#.
And i want to Start Id From 501 and store this id in database table
please give me code for that.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rahul ChavanPosted Apr 15, 2016, 9:43 AM
Amit KumarPosted Apr 15, 2016, 9:10 AM
Ravi PatelPosted Apr 15, 2016, 9:01 AM
(
ID int IDENTITY(501,1) PRIMARY KEY,
LastName varchar(255) NOT NULL,
FirstName varchar(255),
Address varchar(255),
City varchar(255)
)
Nirmal RoyPosted Apr 15, 2016, 8:22 AM