I have a Sharepoint function that significantly expands lists with a new function using the List receiver. For each list the function is bound to, I need to save some configuration.
Now the first thing that occurred to me was the obvious decision: to have a global list. Of course this works, but I wonder if there is a way to save the special configuration in a hidden place? Not that it was confidential, but I donβt want to clutter users with too many lists. I believe that I can hide the lists, but at the same time I wonder if sharepoint allows this database to be used?
I'm not talking about just using ADO.net for direct access to db (which is a big no-no with Sharepoint), I am thinking of some kind of officially supported mechanism.
source share