Skip to content

Commit a8a8b9a

Browse files
committed
Documentation update
1 parent 936525a commit a8a8b9a

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

docs/content/comparison.fsx

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,18 @@ Not so good:
5858
- By default supports only Microsoft SQLServer and T-SQL
5959
- Code overhead if you have a large amount of different small operations
6060
- Doesn't generate domain model for work with C#
61+
- No support for .NET Standard / .NET Core
6162
6263
### SQLProvider
6364
6465
Good:
6566
66-
- Supports any database (MSSQL, MySQL, Postgre, Oracle, Odbc, ...)
67+
- Supports any database (MSSQL, MySQL, PostgreSQL, Oracle, Odbc, ...)
68+
- Supports .NET Standard and .NET Core
6769
- Changing the database is not actually huge work
6870
- Makes effective simple SQL
6971
- Supports async database operations
72+
- Used in production for enterprise development for years
7073
- Simplifies user code
7174
- Open source
7275
@@ -84,6 +87,7 @@ Good:
8487
8588
- You can use generated DB-model from C#-projects
8689
- Supports even complex LINQ-operations
90+
- Used in production for enterprise development for years
8791
8892
Not so good:
8993
@@ -93,6 +97,25 @@ Not so good:
9397
- FSharp/LINQ query-syntax is a learning curve
9498
- Closed source
9599
- Supports only Microsoft SQLServer
100+
- No support for .NET Standard / .NET Core
101+
102+
### Rezoom.SQL
103+
104+
Good:
105+
106+
- User has full control of SQL
107+
- Which allows full utilization of database indexes with complex queries
108+
- SQL syntax is already familiar for many
109+
- Supports SQLite, SQL Server, and PostgreSQL
110+
- Open source
111+
112+
Not so good:
113+
114+
- No support for .NET Standard / .NET Core
115+
- No support for MySQL, Oracle, ...
116+
- Code overhead if you have a large amount of different small operations
117+
- Doesn't generate domain model for work with C#
118+
96119
97120
[Dapper](https://code.google.com/p/dapper-dot-net/)
98121
-----------------------------------------

0 commit comments

Comments
 (0)