I wanted to make an inner join so that I get a list with the names of Logins
from the Integer List of UsuarioID
of class LoginsAtivos
.
public class Login
{
public int ID { get; set; }
[Required]
public string Nome { get; set; }
[Required]
public string Senha {get;set; }
}
public class LoginAtivo {
public virtual int UsuarioID { get; set; }
public DateTime inicio { get; set; }
}
I'm locked in the following function
context.LoginsAtivos.ToList();