There are some links in google to do this. But no hint works for me. So I tried some own ideas. And indeed – I found a simple solution without registry editing and so on. Get the actual location of “Unfiled Notes” Start OneNote File > Options Save & Backup look for the entry “Unfiled Notes Section” by default this is “C:\Users\***\Documents\One... Notebooks\Unfiled Notes.one” Close OneNote (and also the Side Note tool in the tray)! Move the “Unfiled Notes.one” to the new location Reconnect ......
During playing with EF and LINQ I run in this UI-error: argument type ‘lambda expression’ is not assignable to parameter type ‘string’ The Compiler themselves states: Cannot convert lambda expression to type 'string' because it is not a delegate type. After some googleling I found, that a missing using directive is the problem. Inserting System.Linq fixed it ......