File tree Expand file tree Collapse file tree 5 files changed +18
-10
lines changed
EntityFramework.DynamicFilters.NetStandard21
EntityFramework.DynamicFilters.Shared
EntityFramework.DynamicFilters/Properties
Z.EntityFramework.Classic.DynamicFilters.Net40/Properties
Z.EntityFramework.Classic.DynamicFilters.NetStandard20 Expand file tree Collapse file tree 5 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 99 <Authors >EntityFramework.DynamicFilters</Authors >
1010 <Product >EntityFramework.DynamicFilters</Product >
1111 <Company >ZZZ Projects</Company >
12- <Version >3.2.0 </Version >
12+ <Version >3.2.1 </Version >
1313 <Copyright >Copyright © ZZZ Projects, John Cachat</Copyright >
1414 <AssemblyName >EntityFramework.DynamicFilters</AssemblyName >
1515 <RootNamespace >EntityFramework.DynamicFilters</RootNamespace >
Original file line number Diff line number Diff line change 22using System . Data . Entity . Core . Common . CommandTrees ;
33using System . Data . Entity . Core . Metadata . Edm ;
44using System . Data . Entity . Infrastructure . Interception ;
5+ using System . Data . Entity . Migrations . History ;
56using System . Linq ;
67
78namespace EntityFramework . DynamicFilters
@@ -16,6 +17,9 @@ public void TreeCreated(DbCommandTreeInterceptionContext interceptionContext)
1617 var context = interceptionContext . DbContexts . FirstOrDefault ( ) ;
1718 if ( context != null )
1819 {
20+ // https://github.com/zzzprojects/EntityFramework.DynamicFilters/issues/153
21+ if ( context is HistoryContext ) return ;
22+
1923 DbExpressionVisitor < DbExpression > visitor ;
2024#if ( USE_CSPACE )
2125 // Intercepting CSpace instead of SSpace gives us access to all of the navigation properties
Original file line number Diff line number Diff line change 3232// You can specify all the values or you can default the Build and Revision Numbers
3333// by using the '*' as shown below:
3434// [assembly: AssemblyVersion("1.0.*")]
35- [ assembly: AssemblyVersion ( "3.2.0 " ) ]
36- [ assembly: AssemblyFileVersion ( "3.2.0 " ) ]
37- [ assembly: AssemblyInformationalVersion ( "3.2.0 " ) ]
35+ [ assembly: AssemblyVersion ( "3.2.1 " ) ]
36+ [ assembly: AssemblyFileVersion ( "3.2.1 " ) ]
37+ [ assembly: AssemblyInformationalVersion ( "3.2.1 " ) ]
Original file line number Diff line number Diff line change 55// General Information about an assembly is controlled through the following
66// set of attributes. Change these attribute values to modify the information
77// associated with an assembly.
8- [ assembly: AssemblyTitle ( "Z.EntityFramework.Classic.DynamicFilters.Net40 " ) ]
8+ [ assembly: AssemblyTitle ( "Z.EntityFramework.Classic.DynamicFilters" ) ]
99[ assembly: AssemblyDescription ( "" ) ]
1010[ assembly: AssemblyConfiguration ( "" ) ]
11- [ assembly: AssemblyCompany ( "" ) ]
12- [ assembly: AssemblyProduct ( "Z.EntityFramework.Classic.DynamicFilters.Net40 " ) ]
13- [ assembly: AssemblyCopyright ( "Copyright © 2021 " ) ]
11+ [ assembly: AssemblyCompany ( "ZZZ Projects " ) ]
12+ [ assembly: AssemblyProduct ( "Z.EntityFramework.Classic.DynamicFilters" ) ]
13+ [ assembly: AssemblyCopyright ( "ZZZ Projects " ) ]
1414[ assembly: AssemblyTrademark ( "" ) ]
1515[ assembly: AssemblyCulture ( "" ) ]
1616
3232// You can specify all the values or you can default the Build and Revision Numbers
3333// by using the '*' as shown below:
3434// [assembly: AssemblyVersion("1.0.*")]
35- [ assembly: AssemblyVersion ( "1.0.0.0" ) ]
36- [ assembly: AssemblyFileVersion ( "1.0.0.0" ) ]
35+ [ assembly: AssemblyVersion ( "3.2.1" ) ]
36+ [ assembly: AssemblyFileVersion ( "3.2.1" ) ]
37+ [ assembly: AssemblyInformationalVersion ( "3.2.1" ) ]
Original file line number Diff line number Diff line change 66 <RootNamespace >Z.EntityFramework.Classic.DynamicFilters</RootNamespace >
77 <SignAssembly >true</SignAssembly >
88 <AssemblyOriginatorKeyFile >zzzproject.pfx</AssemblyOriginatorKeyFile >
9+ <Version >3.2.1</Version >
10+ <Company >ZZZ Projects</Company >
11+ <Copyright >ZZZ Projects</Copyright >
912 </PropertyGroup >
1013
1114 <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
You can’t perform that action at this time.
0 commit comments