Creates a Set with the same elements as this TableSet.
The returned Set will not modify the Database.
Database
@override Set<E> toSet() => database.select('SELECT * FROM $tableName').map(deserialize).toSet();