Hello all, I am trying to develop my first implementation of Linq to Entities and am having some troubles I cannot seem to find an answer to online.
I have generated my model and entities from my db and mapped my stored procedures to the appropriate entities. However, I have one entity that only has a select stored procedure and I cannot a delete or insert sproc due to DBA rules around this data. I am receiving the following error when I try to compile: "The element 'ModificationFunctionMapping' in namespace 'urn:schemas- microsoft-com:windows:storage:mapping:CS' has incomplete content. List of possible elements expected: 'DeleteFunction, InsertFunction' in namespace 'urn:schemas-microsoft-com:windows:storage:mapping:CS'." I would actually like to have this functionality and figured I could create in-line sql (or some better option) to acheive this as I cannot get sprocs implemented. Is there a way to do this? Any help or direction would be greatly appreciated. Thanks in advance! rbr
