Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dotnet/efcore
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f7be8b3
Choose a base ref
...
head repository: dotnet/efcore
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a5bc598
Choose a head ref
  • 11 commits
  • 120 files changed
  • 7 contributors

Commits on Mar 2, 2022

  1. Map check constraints only to the tables for which they are declared

    Return null name for constraints on entity types not mapped to a table
    Change calls from Array.Empty to Enumerable.Empty
    
    Fixes #24219
    AndriySvyryd authored Mar 2, 2022
    Configuration menu
    Copy the full SHA
    786cb40 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2022

  1. Update dependencies from https://github.com/dotnet/runtime build 2022…

    …0227.1 (#27514)
    
    [main] Update dependencies from dotnet/runtime
    dotnet-maestro[bot] authored Mar 3, 2022
    Configuration menu
    Copy the full SHA
    41a753d View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2022

  1. Stop wrapping single changes in transactions where possible (#27500)

    Closes #27439
    Closes #27507
    
    Co-authored-by: Andriy Svyryd <[email protected]>
    roji and AndriySvyryd authored Mar 4, 2022
    Configuration menu
    Copy the full SHA
    fe5bebc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    49ea987 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2022

  1. Configuration menu
    Copy the full SHA
    e8b51bd View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2022

  1. Update dependencies from https://github.com/dotnet/runtime build 2022…

    …0307.1 (#27585)
    
    [main] Update dependencies from dotnet/runtime
    dotnet-maestro[bot] authored Mar 7, 2022
    Configuration menu
    Copy the full SHA
    96aeb2d View commit details
    Browse the repository at this point in the history
  2. Update dependencies from https://github.com/dotnet/arcade build 20220…

    …304.3 (#27586)
    
    [main] Update dependencies from dotnet/arcade
    dotnet-maestro[bot] authored Mar 7, 2022
    Configuration menu
    Copy the full SHA
    094766b View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2022

  1. Configuration menu
    Copy the full SHA
    66a53b7 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2022

  1. Configuration menu
    Copy the full SHA
    ac143e6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e1a3ee7 View commit details
    Browse the repository at this point in the history
  3. Fix to #27423 - Renaming and dropping columns with Temporal Tables ge…

    …nerates faulty migration
    
    Problem is that when we drop column from the history table we need to disable versioning (and drop columns in both tables separately). However, since we have disabled the period, renaming (and other operations) also needs to happen for both tables now and we don't do it. So the column is only renamed for the temporal table and the name in history table stays the same. When we try to switch versioning back on the exception is thrown.
    
    Fix is to flow the information to ColumnOperations that the column is part of a temporal table and when we process the migrations, if the versioning for the temporal table has been disabled, mirror the necessary operation(s) to the history table also.
    
    Fixes #27423
    maumar committed Mar 9, 2022
    Configuration menu
    Copy the full SHA
    a5bc598 View commit details
    Browse the repository at this point in the history
Loading