You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: SubSonic/Data/ChangeTracking/ChangeTrackerElement.cs
+12-11Lines changed: 12 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,20 @@
1
-
usingSubSonic.Infrastructure;
2
-
usingSubSonic.Infrastructure.Logging;
3
-
usingSubSonic.Infrastructure.Schema;
4
-
usingSubSonic.Linq;
5
-
usingSubSonic.Linq.Expressions;
6
-
usingSystem;
1
+
usingSystem;
7
2
usingSystem.Collections;
8
3
usingSystem.Collections.Generic;
9
4
usingSystem.Collections.ObjectModel;
10
5
usingSystem.Data;
6
+
usingSystem.Linq;
11
7
usingSystem.Linq.Expressions;
12
-
usingSystem.Text;
13
8
usingSystem.Threading.Tasks;
14
9
15
10
namespaceSubSonic.Data.Caching
16
11
{
12
+
usingInfrastructure;
13
+
usingInfrastructure.Logging;
14
+
usingInfrastructure.Schema;
15
+
usingLinq;
16
+
usingLinq.Expressions;
17
+
17
18
[System.Diagnostics.CodeAnalysis.SuppressMessage("Naming","CA1710:Identifiers should have correct suffix",Justification="It is getting to wordy if I do this")]
18
19
publicclassChangeTrackerElement<TEntity>
19
20
:ChangeTrackerElement,IEnumerable<TEntity>
@@ -38,7 +39,7 @@ public override void Add(object record)
0 commit comments