read method

Future<DtoUser?> read(
  1. UserId id
)

Returns the DtoUser stored in the database by the provided id, if any.

Implementation

Future<DtoUser?> read(UserId id) async {
  final DtoUser? existing = _cache[id];
  if (existing != null) {
    return existing;
  }

  return await safe<DtoUser?>(
    (db) async {
      final stmt = db.select(db.users)..where((u) => u.id.equals(id.val));
      final UserRow? row = await stmt.getSingleOrNull();

      if (row == null) {
        return null;
      }

      return UserDb.fromDb(row);
    },
    tag: 'user.read($id)',
    exclusive: false,
  );
}