Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raw SQL queries for unmapped types #29931

Merged
merged 42 commits into from
Jan 12, 2023
Merged

Raw SQL queries for unmapped types #29931

merged 42 commits into from
Jan 12, 2023

Commits on Nov 1, 2022

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

Commits on Nov 2, 2022

  1. Configuration menu
    Copy the full SHA
    47ac39d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2627f28 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8be3619 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c597473 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    baac22d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    be469e6 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2022

  1. Configuration menu
    Copy the full SHA
    23415d7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0544093 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2022

  1. Configuration menu
    Copy the full SHA
    1addb2c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e75722 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1d70400 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2022

  1. Configuration menu
    Copy the full SHA
    876c649 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8b903ca View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3f2189a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1bad91e View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2022

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

Commits on Nov 14, 2022

  1. Configuration menu
    Copy the full SHA
    7c6d80e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c59122 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    74dc918 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2022

  1. Configuration menu
    Copy the full SHA
    3317439 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2652c51 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    40757ed View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2022

  1. Configuration menu
    Copy the full SHA
    6f19635 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6c479ce View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f48dbe7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0c8605d View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

  1. Merge commit 'f48dbe7321a44cd4aa3e22986beb208e559e3919' into internal…

    …-merge-6.0-2023-01-10-1110
    vseanreesermsft committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    351cd7b View commit details
    Browse the repository at this point in the history
  2. Merge commit '0c8605d87b88157c773efd70ed2b8546ef18d5a1' into internal…

    …-merge-7.0-2023-01-10-1114
    vseanreesermsft committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    ac61b0b View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2023

  1. Move to 7.0.102 .NET SDK

    dougbu committed Jan 11, 2023
    Configuration menu
    Copy the full SHA
    c8fa08b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1bf4c45 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #30018 from vseanreesermsft/internal-merge-7.0-202…

    …3-01-10-1114
    
    Merging internal commits for release/7.0
    dougbu authored Jan 11, 2023
    Configuration menu
    Copy the full SHA
    9dbdfb6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #30017 from vseanreesermsft/internal-merge-6.0-202…

    …3-01-10-1110
    
    Merging internal commits for release/6.0
    dougbu authored Jan 11, 2023
    Configuration menu
    Copy the full SHA
    7199547 View commit details
    Browse the repository at this point in the history
  5. Raw SQL queries for unmapped types

    Fixes #10753
    
    Builds an ad-hoc entity type and uses it to query when `SqlQuery` is called for a type that does not have a type mapping.
    
    Things to consider:
    
    - The entity type cannot have relationships
    - Properties are mapped by convention and mapping attributes are respected.
    - The entity types are keyless.
    ajcvickers committed Jan 11, 2023
    Configuration menu
    Copy the full SHA
    23e88e8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3f2736a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7ff89d3 View commit details
    Browse the repository at this point in the history
  8. Merge branch 'release/7.0'

    ajcvickers committed Jan 11, 2023
    Configuration menu
    Copy the full SHA
    1ac1857 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2023

  1. Raw SQL queries for unmapped types

    Fixes #10753
    
    Builds an ad-hoc entity type and uses it to query when `SqlQuery` is called for a type that does not have a type mapping.
    
    Things to consider:
    
    - The entity type cannot have relationships
    - Properties are mapped by convention and mapping attributes are respected.
    - The entity types are keyless.
    ajcvickers committed Jan 12, 2023
    Configuration menu
    Copy the full SHA
    ae52a0d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    acfa6b4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    75539c8 View commit details
    Browse the repository at this point in the history
  4. Review updates.

    ajcvickers committed Jan 12, 2023
    Configuration menu
    Copy the full SHA
    f4a6298 View commit details
    Browse the repository at this point in the history