breeze: many-to-many issues when saving
I've been struggling for a while with many-to-many associations in a breeze app. I have issues both on the client and server side but for now, I'll just expose my client-side issue. I don't know if the approach I've come up with is correct or not, and I would really like to get feedback from the breeze team on this: My business model: public class Request { public virtual IList<RequestContact> RequestContacts { get; set; } } public class RequestContact { public virtual Contact Contact { get; set; } public virtual Guid ContactId { get; set; } public virtual Request Request { get; set; } public