I have the statement below, in C #, and would like to include an existing information in another table, such as the apartment column (existing in the condomino table).
return GetUltraGeneric<Usuario>().Where(p => p.condominio == Constants.codigo_condominio).ToList();
Am I on the right track? I tried .Join (), GroupJoin () and I do not know how.
Thank you!