Horje
ef core identity get user with relationships Code Example
ef core identity get user with relationships
First add relationship to ApplicationUser

public class ApplicationUser : IdentityUser
{
  public string Name { get; set; }
  public string Surname { get; set; }

  public IList<Address> Address { get; set; }
}

and then you call call it easly using UserManager Class

var user = await userManager.Users.Include(x => x.Address).SingleOrDefaultAsync(x => x.Id == Id);




Csharp

Related
number to string ef example c# Code Example number to string ef example c# Code Example
how to add the ssl certificate in vb.net application Code Example how to add the ssl certificate in vb.net application Code Example
how to use javascriptexecutor for loop in selenium c# Code Example how to use javascriptexecutor for loop in selenium c# Code Example
c# generic type converter Code Example c# generic type converter Code Example
C# while loop Code Example C# while loop Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8