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: .github/ISSUE_TEMPLATE/bug_report.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,16 +22,16 @@ A clear and concise description of what you expected to happen. If applicable, a
22
22
**Versions (please complete the following information):**
23
23
24
24
<!--
25
-
For EdgeDB Version: run `edgedb query 'select sys::get_version_as_str()'` from your project directory (or run `select sys::get_version_as_str();` in the EdgeDB interactive shell).
26
-
For EdgeDB CLI version: Run `edgedb --version` from anywhere
27
-
For `edgedb-net` version: Run `dotnet list package` from your project directory and look for "EdgeDB.Net.Driver", or find the version number in NuGet's "Installed" tab.
25
+
For Gel Version: run `gel query 'select sys::get_version_as_str()'` from your project directory (or run `select sys::get_version_as_str();` in the Gel interactive shell).
26
+
For Gel CLI version: Run `gel --version` from anywhere
27
+
For `gel-net` version: Run `dotnet list package` from your project directory and look for "EdgeDB.Net.Driver", or find the version number in NuGet's "Installed" tab.
class. Here's an example of using the [`.Parse()`](https://www.edgedb.com/docs/clients/dotnet/connection_parameters#EdgeDBConnection.Parse-string?-string?-Action_EdgeDBConnection_?-bool)
**Note**: EdgeDB.Net is a fully asynchronous driver, and as such, all I/O
71
+
**Note**: Gel.Net is a fully asynchronous driver, and as such, all I/O
70
72
operations are performed asynchronously.
71
73
72
74
73
-
Queries are executed through the `EdgeDBClient` by using different helper
75
+
Queries are executed through the `GelClientPool` by using different helper
74
76
methods. Your choice of method is dependent on the kind of query you're making,
75
77
better known as [cardinality](https://www.edgedb.com/docs/clients/dotnet/index#cardinality-and-return-types).
76
78
77
-
Query helper methods will expect a generic `T` type which is the [.NET version of an EdgeDB type](https://www.edgedb.com/docs/clients/dotnet/datatypes#datatypes):
79
+
Query helper methods will expect a generic `T` type which is the [.NET version of an Gel type](https://www.edgedb.com/docs/clients/dotnet/datatypes#datatypes):
0 commit comments