Tutorial by Examples

So let's say you have an entity class like this: public class Person { public int PersonId { get; set; } public string Name { get; set; } public string ZipCode { get; set; } public string City { get; set; } public string AddressLine { get; set; } } And then let's say that...
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...

Page 1 of 1