in AdventureWorksMVCCore.Web/Models/CYCLE_STOREContext.cs [22:31]
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
if (!optionsBuilder.IsConfigured)
{
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. See http://go.microsoft.com/fwlink/?LinkId=723263 for guidance on storing connection strings.
optionsBuilder.UseSqlServer(
"Server=sqlrdsdb.cph0bnedghnc.us-east-1.rds.amazonaws.com; " +
"Database=CYCLE_STORE;User Id= DBUser;Password= DBU$er2020;");
}
}