I'm fairly sure the answer to this is going to be that it can't be done but I'm going to ask anyway to make sure.
I am trying to define an ASP .Net MVC Model that contains a List property but EF seems to ignore it when creating the database schema.
Looking at this question, Entity Framework Code First List<string> Property Mapping , the solution seems to be to create a new class to use within the list. Obviously this seems like overkill for something as simple as a string so I was wondering if their is another way to do this with code first and Entity Framework.