Linq Projections like context.Table<Worker>().Select(p => p.MyColumnNullableGuid) do not work correctly with nullable types, like Guid? The result of the above query is a projected list, not empty, but containing only null values. Any idea how to fix ?