I have this case
Employe
{int id;
string name;
int IdEmployeType;
}
EmployeType
{int Id;
string EmployeTypeName;
}
The date are in 2 tables with a foreign key between
Employe.IdEmployeType and EmployeType.Id
I want to do this
Employe
{int id;
string name;
string EmployeTypeName;
}
How can i do ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"nhusers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nhusers?hl=en
-~----------~----~----~----~------~----~------~--~---