如何在登录中获取 ID?
我正在使用实体框架,在 frmLogin 我有这个:
private bool IsValidUser(string userName, string pass)
{
Context context = new Context();
var query = (from c in context.Cuentas
where c.Nombre == userName && c.Password == pass
select c);
return query.Any();
}
但是使用此功能,我只能验证用户是否在数据库中。
我也想得到这个用户的 id。