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
A set of cloud-native tools and utilities for .NET Core.
8
8
9
+
The goal of this project is implement the most common used cloud-native technologies (cloud-agnostic approach, containerization mechanism, container orchestration and so on) and share with the technical community the best way to develop great applications with .NET Core.
10
+
11
+
## Give a Star! :star:
12
+
13
+
If you liked the project or if `netcorekit` helped you, please give a star so that .NET community will know and help them just like you. Thank you very much :+1:
14
+
9
15
### Features
10
16
11
17
- Simple libraries. No frameworks. Little abstraction.
@@ -26,7 +32,9 @@ A set of cloud-native tools and utilities for .NET Core.
26
32
27
33
Small, lightweight, cloud-native out of the box, and much more simple to get starting with miniservices approach. [Why miniservices?](https://thenewstack.io/miniservices-a-realistic-alternative-to-microservices)
28
34
29
-
- No data storage
35
+
### Look how simple we can start as below:
36
+
37
+
- Without storage, merely calculation and job tasks:
30
38
31
39
```csharp
32
40
publicclassStartup
@@ -43,7 +51,7 @@ public class Startup
43
51
}
44
52
```
45
53
46
-
- With Entity Framework
54
+
- With Entity Framework Core (SQL Server, MySQL, and SQLite providers) comes along with the generic repository in place:
47
55
48
56
```csharp
49
57
publicclassStartup
@@ -60,7 +68,7 @@ public class Startup
60
68
}
61
69
```
62
70
63
-
- With MongoDb
71
+
- With NoSQL (MongoDb provider) comes along with the generic repository in place:
0 commit comments