how to get the last insert ID in linq

reid

I have two tables, user and student. user is the parent table and student is the child table

so from the following code

public void adduserStudenttype(StudentAddUserModel s)
        {
            using (DASEntities db = new DASEntities())
            {
                user u = new user();
                u.usersEmail = s.Email;
                u.usersPassword = s.Password;
                u.usersFname = s.Fname;
                u.usersUtype = s.UserType;
                db.user.Add(u);
                db.SaveChanges();

                student stud = new student();
                stud.studentID = \\ how to get the id in the user last insert??


            }     
        }

how can i get the last insert id from the user table? id is the primary key in user table.

Christos

You could get it as below:

// I suppose that the corresponding's property name is ID.
// If it is not, you should change it correspondingly.
stud.studentID = u.ID;

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

how to get the last insert ID in linq

From Dev

How to get last insert id with Phalcon?

From Dev

Nodjs sequalize how to get last insert id

From Dev

How to get the ID of the last insert in MVC?

From Dev

How to Get last Insert Id in php without insert any data?

From Dev

how to get last insert id after insert query in codeigniter

From Dev

Get last insert id of Postgresql

From Dev

Linq get last ID inserted

From Dev

How can i get the last insert id in the create:: in laravel

From Dev

How to get the last row Id after insert data into table for SQLite

From Dev

How to get last insert id in Eloquent ORM laravel

From Dev

how to get last id when a row was insert in laravel eloquent in Model

From Dev

Go: How to get last insert id on Postgresql with NamedExec()

From Dev

How to get last inserted id from insert method laravel 5.1

From Dev

how to get LAST_INSERT_ID via stored procedure in php

From Dev

How can i get the last insert id in the create:: in laravel

From Dev

how get last inserted id in multiple record insert?

From Dev

How to get last id after insert a value in php

From Dev

How to get last insert id from mysql database in php?

From Dev

Get last insert id return null

From Dev

Get ID from last insert into table

From Dev

How to get last id inserted. mysql_insert_id() not working

From Dev

C# Insert MDB Database Get Last Insert ID

From Dev

C# Insert MDB Database Get Last Insert ID

From Dev

how to select last_insert_id?

From Dev

How efficient is Last_insert_id?

From Dev

How to get last inserted ID after insert to MySQL table with multi col primary key

From Dev

how to get the last insert id from a table in DB2 using nodejs and ibm_db package

From Dev

How to get ID from insert()

Related Related

  1. 1

    how to get the last insert ID in linq

  2. 2

    How to get last insert id with Phalcon?

  3. 3

    Nodjs sequalize how to get last insert id

  4. 4

    How to get the ID of the last insert in MVC?

  5. 5

    How to Get last Insert Id in php without insert any data?

  6. 6

    how to get last insert id after insert query in codeigniter

  7. 7

    Get last insert id of Postgresql

  8. 8

    Linq get last ID inserted

  9. 9

    How can i get the last insert id in the create:: in laravel

  10. 10

    How to get the last row Id after insert data into table for SQLite

  11. 11

    How to get last insert id in Eloquent ORM laravel

  12. 12

    how to get last id when a row was insert in laravel eloquent in Model

  13. 13

    Go: How to get last insert id on Postgresql with NamedExec()

  14. 14

    How to get last inserted id from insert method laravel 5.1

  15. 15

    how to get LAST_INSERT_ID via stored procedure in php

  16. 16

    How can i get the last insert id in the create:: in laravel

  17. 17

    how get last inserted id in multiple record insert?

  18. 18

    How to get last id after insert a value in php

  19. 19

    How to get last insert id from mysql database in php?

  20. 20

    Get last insert id return null

  21. 21

    Get ID from last insert into table

  22. 22

    How to get last id inserted. mysql_insert_id() not working

  23. 23

    C# Insert MDB Database Get Last Insert ID

  24. 24

    C# Insert MDB Database Get Last Insert ID

  25. 25

    how to select last_insert_id?

  26. 26

    How efficient is Last_insert_id?

  27. 27

    How to get last inserted ID after insert to MySQL table with multi col primary key

  28. 28

    how to get the last insert id from a table in DB2 using nodejs and ibm_db package

  29. 29

    How to get ID from insert()

HotTag

Archive