vote up 3 vote down star

Hice una clase desde la herramienta Linq to SQL Clasees con VS 2008 SP1 Framework 3.5 SP1, en este caso extendí el Partial

partial void UpdateMiTabla(MiTabla instance){
   //Logica de negocio
   // Reglas de validación etc.
}

Mi problema es que cuando le doy db.SubmitChanges() si va al metodo UpdatemiTabla y hace las validaciones, pero no hace el update, dando el siguiente error:

[Exception: Deliver]
   System.Data.Linq.ChangeProcessor.SendOnValidate(MetaType type, TrackedObject item, ChangeAction changeAction) +197
   System.Data.Linq.ChangeProcessor.ValidateAll(IEnumerable`1 list) +255
   System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode) +76
   System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode) +331
   System.Data.Linq.DataContext.SubmitChanges() +19

EDIT: English Translation here

flag
It would be nice if people that downmod, post a comment about why they downmoded the Q. Just because it's in Spanish doesn't make it less of a prog Q. – Franci Penov Sep 26 '08 at 13:33
2  
The reason I downmoded is because this is an English site. The commuinity's language is English and allowing questions and discussions in other languages dilutes the content for everyone except the small percentage of bilingual users. – Mike Deck Sep 26 '08 at 13:40
It would be helpful for someone to translate the question. Surely someone is bi-lingual on this site. – David B Sep 26 '08 at 13:42
2  
Stop downvoting! Who the Hell decided that "community" language is English? Don't know foreign language? Pass by! – aku Sep 26 '08 at 13:50
2  
Joo, kaikki puhukoot sitä kieltä mitä osaavat! Siitä ei ole mitään haittaa, ihan oikeasti! Seriously people, this is an English site and programming in general is international and since English is the most used natural language in this context, you should use it here too. – Esko Oct 6 at 14:33
show 4 more comments

4 Answers

vote up 3 vote down check
  • si usted proporciona este método, usted debe realizar la actualización en el método

  • if you provide this method, you must perform the update in the method.


http://msdn.microsoft.com/en-us/library/bb882671.aspx

  • If you implement the Insert, Update and Delete methods in your partial class, the LINQ to SQL runtime will call them instead of its own default methods when SubmitChanges is called.

  • Si usted ejecuta el parte movible, pone al día y suprime métodos en su clase parcial, el LINQ al tiempo de pasada del SQL los llamará en vez de sus propios métodos del defecto cuando se llama SubmitChanges.


Try MiTabla.OnValidate

link|flag
vote up 14 vote down

Translation: How to code the partial extensions that Linq to SQL autogenerates?

I made a class from Linq to SQL Clasees with VS 2008 SP1 Framework 3.5 SP1, in this case I extended the partial

partial void UpdateMyTable(MyTable instance){
   // Business logic
   // Validation rules, etc.
}

My problem is when I execute db.SubmitChanges(), it executes UpdateMyTable and makes the validations but it doesn't update, I get this error:

[Exception: Deliver]
   System.Data.Linq.ChangeProcessor.SendOnValidate(MetaType type, TrackedObject item, ChangeAction changeAction) +197
   System.Data.Linq.ChangeProcessor.ValidateAll(IEnumerable`1 list) +255
   System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode) +76
   System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode) +331
   System.Data.Linq.DataContext.SubmitChanges() +19
link|flag
Thanks Eduardo. That was nice. – wcm Sep 26 '08 at 13:52
By the way, "extensiones" va con "s" – Eduardo Campañó Sep 26 '08 at 20:44
vote up 1 vote down

If you want to implement this method but not do the update yourself you make the method call ExecuteDynamicUpdate(item);

Likewise ExecuteDynamicDelete and ExecuteDynamicInsert for DeleteMyTable and InsertMyTable respectively.

link|flag
vote up 1 vote down

I can't post comments; however:

http://blog.stackoverflow.com/2009/07/non-english-question-policy/

link|flag
I'm sure the question asker from 1 year ago will be right along to view your "answer". -1 – David B Oct 6 at 15:02
I posted this link as a comment on the original question before seeing this answer, and before realizing that the question was a year old. +1 to offset David B's downvote. – Graeme Perrow Oct 6 at 16:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.