public static Task <Account> GetBySteamIDAsync(this DbSet <Account> accounts, SteamID steamID) { if (steamID == null) { throw new ArgumentNullException(nameof(steamID)); } return(accounts.GetBySteamIDAsync(steamID.ToSteamID64())); }