Mapping of stored procedures is all-or-nothing in Entity Framework? (FunctionMapping)
AFAIK. It's all or nothing.
If you do not map all three of the insert, update, or delete operations of a entity type to stored procedures, the unmapped operations will fail if executed at runtime and an UpdateException is thrown.
MSDN