This code fails to actually save any changes:
// // POST: /SomeType/Edit/5 [AcceptVerbs(HttpVerbs.Post)] public ActionResult Edit(Guid id, SomeType Model) {
I have this working, but what iam not able to get at is the parent entity of SalesOrderDetail How can i get at it?
SalesOrderDetail.SalesOrderHead is null and also entityreference is null. My edit routine has access to the id of SalesOrderDetail only.
Thanks Sri