I have injected IdentityUser to User table. EF created N:N UserStudent table.
SELECT TOP [Email] FROM [model].[dbo].[AspNetUsers] A, [model].[dbo].[AspNetUserRoles] B where A.Id = B.UserId and B.RoleId = 'parent' and A.Id = (select UserId from [model].[dbo].[UserStudent] where StudentId = 'X')