Get DbDriver Set working
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user