File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed
Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1- <Project Sdk =" Microsoft.NET.Sdk.Web" >
1+ <Project Sdk =" Microsoft.NET.Sdk.Web" >
22
33 <PropertyGroup >
44 <TargetFramework >netcoreapp3.0</TargetFramework >
55 </PropertyGroup >
66
77 <ItemGroup >
8- <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 3.0.0 " />
8+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 3.1.2 " />
99 </ItemGroup >
1010
1111 <ItemGroup >
Original file line number Diff line number Diff line change 66 </PropertyGroup >
77
88 <ItemGroup >
9- <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 3.0.0 " />
9+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 3.1.2 " />
1010 <PackageReference Include =" Microsoft.EntityFrameworkCore.InMemory" Version =" 3.0.0" />
1111 </ItemGroup >
1212
Original file line number Diff line number Diff line change 1+ using System . Linq . Expressions ;
2+
3+ namespace FileContextCore
4+ {
5+ public static class ExpressionExtension
6+ {
7+ public static LambdaExpression UnwrapLambdaFromQuote ( this Expression expression )
8+ => ( LambdaExpression ) ( expression is UnaryExpression unary && expression . NodeType == ExpressionType . Quote
9+ ? unary . Operand
10+ : expression ) ;
11+ }
12+ }
Original file line number Diff line number Diff line change 2727 <ItemGroup >
2828 <PackageReference Include =" CsvHelper" Version =" 12.1.3" />
2929 <PackageReference Include =" EPPlus" Version =" 4.5.3.2" />
30- <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 3.0.0 " />
30+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 3.1.2 " />
3131 <PackageReference Include =" Microsoft.EntityFrameworkCore.Relational" Version =" 3.0.0" />
3232 <PackageReference Include =" Newtonsoft.Json" Version =" 12.0.2" />
3333 <PackageReference Include =" Newtonsoft.Json.Bson" Version =" 1.0.2" />
You can’t perform that action at this time.
0 commit comments