Get DbDriver Set working

This commit is contained in:
2025-08-14 16:53:07 -07:00
parent 2d6644fc0e
commit 5ad7ca0c3e
5 changed files with 367 additions and 337 deletions
@@ -5,7 +5,7 @@ using System.Data.Common;
namespace BoredCareers.Services.DatabaseService {
public partial class DatabaseService {
public async Task<Resume?> GetResume(DbDataReader reader) {
public async Task<Resume?> GetResumeHeader(DbDataReader reader) {
while (await reader.ReadAsync()) {
if (reader == null) { break; }
int _id = reader.GetInt32("ID");