Store GUID as text using SQLite.NET
Connection string
This SQLite.NET connection string can be used for connections to SQLite.
Normally, GUIDs are stored in a binary format. Use this connection string to store GUIDs as text.
Data Source=c:\mydb.db;Version=3;BinaryGUID=False;
Note that storing GUIDs as text uses more space in the database.