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

Properly implement support for Cosmos hierarchical partition keys #34557

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 77 additions & 17 deletions src/EFCore.Cosmos/Extensions/CosmosQueryableExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,58 +18,118 @@ namespace Microsoft.EntityFrameworkCore;
/// </remarks>
public static class CosmosQueryableExtensions
{
internal static readonly MethodInfo WithPartitionKeyMethodInfo
internal static readonly MethodInfo WithPartitionKeyMethodInfo1
= typeof(CosmosQueryableExtensions).GetTypeInfo()
.GetDeclaredMethods(nameof(WithPartitionKey))
.Single(mi => mi.GetParameters().Length == 2);

internal static readonly MethodInfo WithPartitionKeyMethodInfo2
= typeof(CosmosQueryableExtensions).GetTypeInfo()
.GetDeclaredMethods(nameof(WithPartitionKey))
.Single(mi => mi.GetParameters().Length == 3);

internal static readonly MethodInfo WithPartitionKeyMethodInfo3
= typeof(CosmosQueryableExtensions).GetTypeInfo()
.GetDeclaredMethods(nameof(WithPartitionKey))
.Single(mi => mi.GetParameters().Length == 4);

/// <summary>
/// Specify the partition key value for partition used for the query. Required when using
/// a resource token that provides permission based on a partition key for authentication.
/// Specify the partition key for partition used for the query.
/// Required when using a resource token that provides permission based on a partition key for authentication,
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-query">Querying data with EF Core</see>, and
/// <see href="https://aka.ms/efcore-docs-cosmos">Accessing Azure Cosmos DB with EF Core</see> for more information and examples.
/// </remarks>
/// <typeparam name="TEntity">The type of entity being queried.</typeparam>
/// <param name="source">The source query.</param>
/// <param name="partitionKey">The partition key value.</param>
/// <param name="partitionKeyValue">The partition key value.</param>
/// <returns>A new query with the set partition key.</returns>
public static IQueryable<TEntity> WithPartitionKey<TEntity>(this IQueryable<TEntity> source, string partitionKey)
public static IQueryable<TEntity> WithPartitionKey<TEntity>(this IQueryable<TEntity> source, object partitionKeyValue)
where TEntity : class
=> WithPartitionKey(source, partitionKey, []);
{
Check.NotNull(partitionKeyValue, nameof(partitionKeyValue));

return
source.Provider is EntityQueryProvider
? source.Provider.CreateQuery<TEntity>(
Expression.Call(
instance: null,
method: WithPartitionKeyMethodInfo1.MakeGenericMethod(typeof(TEntity)),
Copy link
Member

@AndriySvyryd AndriySvyryd Aug 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider removing the MakeGenericMethod by leveraging the compiler.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're referring to this pattern, right?

That's a good suggestion... Currently all of our operators work with MakeGenericMethod, so I propose to do this in a big pass for 10... Opened #34559.

source.Expression,
Expression.Constant(partitionKeyValue, typeof(object))))
: source;
}

/// <summary>
/// Specify the partition key for partition used for the query. Required when using
/// a resource token that provides permission based on a partition key for authentication,
/// Specify the partition key for partition used for the query.
/// Required when using a resource token that provides permission based on a partition key for authentication,
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-query">Querying data with EF Core</see>, and
/// <see href="https://aka.ms/efcore-docs-cosmos">Accessing Azure Cosmos DB with EF Core</see> for more information and examples.
/// </remarks>
/// <typeparam name="TEntity">The type of entity being queried.</typeparam>
/// <param name="source">The source query.</param>
/// <param name="partitionKeyValue">The partition key value.</param>
/// <param name="additionalPartitionKeyValues">Additional values for hierarchical partitions.</param>
/// <param name="partitionKeyValue1">The first value in a hierarchical partition key.</param>
/// <param name="partitionKeyValue2">The second value in a hierarchical partition key.</param>
/// <returns>A new query with the set partition key.</returns>
public static IQueryable<TEntity> WithPartitionKey<TEntity>(
this IQueryable<TEntity> source,
object partitionKeyValue,
params object[] additionalPartitionKeyValues)
object partitionKeyValue1,
object partitionKeyValue2)
where TEntity : class
{
Check.NotNull(partitionKeyValue, nameof(partitionKeyValue));
Check.HasNoNulls(additionalPartitionKeyValues, nameof(additionalPartitionKeyValues));
Check.NotNull(partitionKeyValue1, nameof(partitionKeyValue1));
Check.NotNull(partitionKeyValue2, nameof(partitionKeyValue2));

return
source.Provider is EntityQueryProvider
? source.Provider.CreateQuery<TEntity>(
Expression.Call(
instance: null,
method: WithPartitionKeyMethodInfo2.MakeGenericMethod(typeof(TEntity)),
source.Expression,
Expression.Constant(partitionKeyValue1, typeof(object)),
Expression.Constant(partitionKeyValue2, typeof(object))))
: source;
}

/// <summary>
/// Specify the partition key for partition used for the query.
/// Required when using a resource token that provides permission based on a partition key for authentication,
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-query">Querying data with EF Core</see>, and
/// <see href="https://aka.ms/efcore-docs-cosmos">Accessing Azure Cosmos DB with EF Core</see> for more information and examples.
/// </remarks>
/// <typeparam name="TEntity">The type of entity being queried.</typeparam>
/// <param name="source">The source query.</param>
/// <param name="partitionKeyValue1">The first value in a hierarchical partition key.</param>
/// <param name="partitionKeyValue2">The second value in a hierarchical partition key.</param>
/// <param name="partitionKeyValue3">The third value in a hierarchical partition key.</param>
/// <returns>A new query with the set partition key.</returns>
public static IQueryable<TEntity> WithPartitionKey<TEntity>(
this IQueryable<TEntity> source,
object partitionKeyValue1,
object partitionKeyValue2,
object partitionKeyValue3)
where TEntity : class
{
Check.NotNull(partitionKeyValue1, nameof(partitionKeyValue1));
Check.NotNull(partitionKeyValue2, nameof(partitionKeyValue2));
Check.NotNull(partitionKeyValue3, nameof(partitionKeyValue3));

return
source.Provider is EntityQueryProvider
? source.Provider.CreateQuery<TEntity>(
Expression.Call(
instance: null,
method: WithPartitionKeyMethodInfo.MakeGenericMethod(typeof(TEntity)),
method: WithPartitionKeyMethodInfo3.MakeGenericMethod(typeof(TEntity)),
source.Expression,
Expression.Constant(partitionKeyValue, typeof(object)),
Expression.Constant(additionalPartitionKeyValues, typeof(object[]))))
Expression.Constant(partitionKeyValue1, typeof(object)),
Expression.Constant(partitionKeyValue2, typeof(object)),
Expression.Constant(partitionKeyValue3, typeof(object))))
: source;
}

Expand Down
8 changes: 0 additions & 8 deletions src/EFCore.Cosmos/Properties/CosmosStrings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions src/EFCore.Cosmos/Properties/CosmosStrings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,6 @@
<data name="IdNonStringStoreType" xml:space="preserve">
<value>The type of the '{idProperty}' property on '{entityType}' is '{propertyType}'. All 'id' properties must be strings or have a string value converter.</value>
</data>
<data name="IncorrectPartitionKeyNumber" xml:space="preserve">
<value>{actual} partition key values were provided, but the entity type '{entityType}' has {expected} partition key values defined.</value>
</data>
<data name="IndexesExist" xml:space="preserve">
<value>The entity type '{entityType}' has an index defined over properties '{properties}'. The Azure Cosmos DB provider for EF Core currently does not support index definitions.</value>
</data>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,23 +172,15 @@ protected override Expression VisitMethodCall(MethodCallExpression methodCallExp

var innerQueryable = Visit(methodCallExpression.Arguments[0]);

var firstValue = _sqlTranslator.Translate(methodCallExpression.Arguments[1], applyDefaultTypeMapping: false);
if (firstValue is not SqlConstantExpression and not SqlParameterExpression)
for (var i = 1; i < methodCallExpression.Arguments.Count; i++)
{
throw new InvalidOperationException(CosmosStrings.WithPartitionKeyNotConstantOrParameter);
}

_queryCompilationContext.PartitionKeyPropertyValues.Add(firstValue);

if (methodCallExpression.Arguments.Count == 3)
{
var remainingValuesArray = _sqlTranslator.Translate(methodCallExpression.Arguments[2], applyDefaultTypeMapping: false);
if (remainingValuesArray is not SqlParameterExpression)
var value = _sqlTranslator.Translate(methodCallExpression.Arguments[i], applyDefaultTypeMapping: false);
if (value is not SqlConstantExpression and not SqlParameterExpression)
{
throw new InvalidOperationException(CosmosStrings.WithPartitionKeyNotConstantOrParameter);
}

_queryCompilationContext.PartitionKeyPropertyValues.Add(remainingValuesArray);
_queryCompilationContext.PartitionKeyPropertyValues.Add(value);
}

return innerQueryable;
Expand Down
Loading