Skip to content

Commit 4025d0f

Browse files
authored
Update README.md
1 parent 4015a7a commit 4025d0f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# MongoNet
22
This package contains CRUD functions with mongodb driver functions like find that are ready for use for MongoDB.
33

4-
# Step 1: Add connection class
4+
### Step 1: Add connection class
55
```
66
public class MyMongoConnection : IMongoConnection
77
{
@@ -17,7 +17,7 @@ public class MyMongoConnection : IMongoConnection
1717
}
1818
```
1919

20-
# Step 2: Inherit your entity from EntityBase
20+
### Step 2: Inherit your entity from EntityBase
2121
```
2222
public class ExampleEntity : EntityBase
2323
{
@@ -38,7 +38,7 @@ public class ExampleEntity : EntityBase
3838
}
3939
```
4040

41-
# Step 3: Call any crud method from anywhere
41+
### Step 3: Call any crud method from anywhere
4242
```
4343
ExampleEntity.DBContext.Insert(new ExampleEntity(){ });
4444
```

0 commit comments

Comments
 (0)