2
I already have my base ready with the login table, and I didn’t want to change it, so I wonder if it has how to customize it with the tables I already have! and how to do this!
Below the mapping of the login table in my base:
public partial class cnet_logon
{
public long id_pessoa { get; set; }
public long id_pessoaContato { get; set; }
public string userpassword { get; set; }
public bool ativoAcesso { get; set; }
public bool ativoConsumo { get; set; }
public virtual ncl_pessoa ncl_pessoa { get; set; }
public virtual ncl_pessoaContato ncl_pessoaContato { get; set; }
}
You can put how is your code in the body of the question?
– Leonel Sanches da Silva
So actually I just have the database mapping ready with the classes, I don’t know how to consume and adapt with Asp.net Identity to make the authentication
– Ronaldo Asevedo
Favorite. Giving a break in my projects I make a very complete reply to you.
– Leonel Sanches da Silva
Okay, thank you very much, I’ll be waiting
– Ronaldo Asevedo