Skip to content

Instantly share code, notes, and snippets.

View OculiViridi's full-sized avatar
🎯
Focusing

FB OculiViridi

🎯
Focusing
  • Italy
  • 22:03 (UTC +02:00)
View GitHub Profile
@ErikEJ
ErikEJ / IQueryableExtensions.cs
Last active February 29, 2024 12:16
Replacement for EF Core .Contains, that avoids SQL Server plan cache pollution
using System.Linq.Expressions;
namespace Microsoft.EntityFrameworkCore
{
public static class IQueryableExtensions
{
public static IQueryable<TQuery> In<TKey, TQuery>(
this IQueryable<TQuery> queryable,
IEnumerable<TKey> values,
Expression<Func<TQuery, TKey>> keySelector)