And now let's say you want to do the opposite of entity splitting: instead of mapping one entity into two tables, you would like to map one table into two entities. This is called table splitting.
Let's say you have one table with five columns: PersonId, Name, AddressLine, City, ZipCode, where Pers...