Skip to content

Instantly share code, notes, and snippets.

@kolyanet
kolyanet / Program.cs
Last active February 4, 2021 08:35
c# Enum cache factory
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Reflection;
namespace ConsoleApp2
{
internal class Program
@kolyanet
kolyanet / IQueryableExtensions
Last active October 26, 2016 06:22 — forked from rionmonster/IQueryableExtensions
Resolve the SQL being executed behind the scenes in Entity Framework Core
using System;
using System.Linq;
using System.Reflection;
using Microsoft.EntityFrameworkCore.Internal;
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.EntityFrameworkCore.Query.Internal;
using Microsoft.EntityFrameworkCore.Storage;
using Remotion.Linq.Parsing.Structure;
namespace MyProject.Extensions