My question is the next one, when executing this sentence in LINQ, it brings me the user that I require, but also all the table relations where it has been referenced by a foreign key in the DB, that is, if this user made 1000 sales are going to be linked those sales to the object usuario.sales.
usuario = (from u in db.Usuario
where u.UsuarioId == this.Id
select u).FirstOrDefault();
What I need is to remove the relationships that the user table has, or in other words, only obtain the data from the user table and not the other tables that have linked to it.