Know the title is a bit vague and not very descriptive for my real question, but here goes.
I have a new ASP MVC project, where I have EF setup. It is working like a charm. Now I would like to create a new code first model which I'm going to use to store RSS feed items.
Instead of creating the model from scratch, I would very much like to use System.ServiceModel.Syndication.SyndicationItem as a basis for my model. I might want to add some custom fields, but for now I can pretty much use the exact same fields and field types.
My question then is, can I inherit from this class into my code first model? or do I have to make the exact same fields and field types double up?