I cloned an ASP.NET Core 2 project with git and it uses Entity Framework Core with MySQL database.
services.AddDbContext<ApplicationDbContext>(options =>
options.UseMySql(Configuration.GetConnectionString("Default")));
Is it possible for me to contribute on this project but use my local SQL Server instead of MySQL and don't change this on source?
I tried changing UseMySql to UseSqlServer with the right connection string but it threw exception in migrations.