How can I retrieve ROWID value from EF DBSet object: I would like to do something like below:
var accounts = _context.Accounts.Include(x => x.UserFunctions);
foreach (var account in accounts)
{
int rowid = account.GetRowId();
}
where Accounts
is defined in the context like this:
public class DataContext : IdentityDbContext<Account>
{
public DbSet<Account> Accounts { get; set; }
}
and Account
is defined like:
public class Account : IdentityUser
{
public string Title { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
Is there a way of doing account.GetRowId()?
You should be getting the unique Id for the inserted row By(as per your example)
To achieve more control over your code, you can do,