|
I'm sitting in a controller and have retrieved the given user via:
var user= _orchardServices.ContentManager.Query<UserPart, UserPartRecord>().Where(u => u.Email == email);
The UserPart model has a field named: idInstitution. How do I access this value?
thx
|