File tree Expand file tree Collapse file tree 5 files changed +18
-10
lines changed
EntityFramework.DynamicFilters/Properties
EntityFramework.DynamicFilters.NetStandard21
EntityFramework.DynamicFilters.Shared
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 9
9
<Authors >EntityFramework.DynamicFilters</Authors >
10
10
<Product >EntityFramework.DynamicFilters</Product >
11
11
<Company >ZZZ Projects</Company >
12
- <Version >3.2.0 </Version >
12
+ <Version >3.2.1 </Version >
13
13
<Copyright >Copyright © ZZZ Projects, John Cachat</Copyright >
14
14
<AssemblyName >EntityFramework.DynamicFilters</AssemblyName >
15
15
<RootNamespace >EntityFramework.DynamicFilters</RootNamespace >
Original file line number Diff line number Diff line change 2
2
using System . Data . Entity . Core . Common . CommandTrees ;
3
3
using System . Data . Entity . Core . Metadata . Edm ;
4
4
using System . Data . Entity . Infrastructure . Interception ;
5
+ using System . Data . Entity . Migrations . History ;
5
6
using System . Linq ;
6
7
7
8
namespace EntityFramework . DynamicFilters
@@ -16,6 +17,9 @@ public void TreeCreated(DbCommandTreeInterceptionContext interceptionContext)
16
17
var context = interceptionContext . DbContexts . FirstOrDefault ( ) ;
17
18
if ( context != null )
18
19
{
20
+ // https://github.com/zzzprojects/EntityFramework.DynamicFilters/issues/153
21
+ if ( context is HistoryContext ) return ;
22
+
19
23
DbExpressionVisitor < DbExpression > visitor ;
20
24
#if ( USE_CSPACE )
21
25
// Intercepting CSpace instead of SSpace gives us access to all of the navigation properties
Original file line number Diff line number Diff line change 32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [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 5
5
// General Information about an assembly is controlled through the following
6
6
// set of attributes. Change these attribute values to modify the information
7
7
// associated with an assembly.
8
- [ assembly: AssemblyTitle ( "Z.EntityFramework.Classic.DynamicFilters.Net40 " ) ]
8
+ [ assembly: AssemblyTitle ( "Z.EntityFramework.Classic.DynamicFilters" ) ]
9
9
[ assembly: AssemblyDescription ( "" ) ]
10
10
[ 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 " ) ]
14
14
[ assembly: AssemblyTrademark ( "" ) ]
15
15
[ assembly: AssemblyCulture ( "" ) ]
16
16
32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [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 6
6
<RootNamespace >Z.EntityFramework.Classic.DynamicFilters</RootNamespace >
7
7
<SignAssembly >true</SignAssembly >
8
8
<AssemblyOriginatorKeyFile >zzzproject.pfx</AssemblyOriginatorKeyFile >
9
+ <Version >3.2.1</Version >
10
+ <Company >ZZZ Projects</Company >
11
+ <Copyright >ZZZ Projects</Copyright >
9
12
</PropertyGroup >
10
13
11
14
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
You can’t perform that action at this time.
0 commit comments