I\'m wondering if anyone can give a solid explanation (with example) of POCO (Plain Old CLR Object). I found a brief explanation on Wikipedia but it really doesn\'t give a
Example of a POCO:
class Person { public string FirstName { get; set; } public string LastName { get; set; } public string EmailAddress { get; set; } }