I have the following models:
public class Session { public int SessionID { get; set; } public int UserID { get; set; } public virtual User User
I solved this by setting JSON serialization in service like this answer https://stackoverflow.com/a/49350457/4178475