Hello
I'm having a disagreement with the model binders in Microsofts mvc framework. I have a base class for my domain models that have an id property that is readonly and type guid. But because it's readonly the binders can't set the value of the property. So am I totally screwed or can someone solve my problem?
EDIT: Sorry as always there is additonal information that I forgot to mention, the only time I want the binder to bind the id property is when it's a related object to another model object. Like in this case when I have a chosen a category for a post and I only want the id for the ORM.