Open visual studio and create new project with individual identity.
open web.config and copy paste connection string.
  <connectionStrings>
    <!--<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-PhotoApp-20250923024404.mdf;Initial Catalog=aspnet-PhotoApp-20250923024404;Integrated Security=True"
      providerName="System.Data.SqlClient" />-->
    <add name="DefaultConnection" connectionString="data source=SCIL-GWL-235;initial catalog=PhotoApp;persist security info=True;user id=bhupi1;password=Welcome01??;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient"/>
  </connectionStrings>

Now open package manager console and type
Enable-migrations
update-database
it will create the database with the default tables.
Now you can proceed with your further development.
