There is a many to many association between an author and Book. I started using stored procedure to map my insert and delete of teh link table. However I did not specify stored procedures for inserting, updating and deleting author and book and surprisingly it worked. From what i knew. If you use stored procedure for doing crud than all the related entities must also use store procedure?
Has that changed or did i know understand what it means that all the related entities and their associations must use stored procedure.
Zeeshan Hirani