Hi guys!
Shift-F12 reveals all the references to .Save() in the base class. That is all the .Save() methods in all my 200+ entity classes. Currenly I call all those from 585 places.
I just want the calls to my BizEventEntity.Save() method, where obviously BizEvent is a table in my db.
Walaa, I am sorry but I don't really follow your reasoning. Since the Save() method sits in the base class wouldn't that just do the same thing.
In an earlier version of LLBLGen this was possible, I guess perhaps there was a Save() method per entityclass or something, and in a later version that was moved to the base class?
Anyway, if it is not possible I guess I have to search through all 585 calls to .Save(). I am just a tad worried that I might miss one or two. What I want to do is to replace all those calls to my own .Save() where I can control a few things before saving.