File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change 15
15
16
16
using System ;
17
17
using System . Collections . Generic ;
18
- using System . IO ;
19
18
using System . Linq ;
20
- using System . Runtime . Serialization ;
21
19
using System . Text ;
22
20
using NUnit . Framework ;
23
21
24
22
using MongoDB . Bson ;
25
- using MongoDB . Bson . Serialization . Attributes ;
26
23
using MongoDB . Driver ;
27
- using MongoDB . Driver . Builders ;
28
24
using MongoDB . Driver . Linq ;
29
25
30
26
namespace MongoDB . DriverUnitTests . Jira . CSharp475
@@ -35,7 +31,6 @@ public class CSharp475Tests
35
31
public abstract class Base
36
32
{
37
33
public ObjectId Id { get ; set ; }
38
-
39
34
public string A { get ; set ; }
40
35
}
41
36
@@ -52,7 +47,6 @@ public void ProjectAfterOfTypeTest()
52
47
var collection = db . GetCollection < Base > ( "ProjectTest" ) ;
53
48
collection . Drop ( ) ;
54
49
55
-
56
50
var t1 = new T1 { A = "T1.A" , B = "T1.B" } ;
57
51
collection . Insert ( t1 ) ;
58
52
You can’t perform that action at this time.
0 commit comments