Skip to content

Commit 3cdec83

Browse files
Update net-fiddle.md
1 parent 9f31138 commit 3cdec83

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

docs/pages/features/net-fiddle.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,19 @@
66
[Try it](https://dotnetfiddle.net/)
77

88
## SQL Server Example
9-
.NET Fiddle doesn't support SQL Server yet.
9+
```csharp
10+
public class EntityContext : DbContext
11+
{
12+
public EntityContext() : base(FiddleHelper.GetConnectionStringSqlServer())
13+
{
14+
15+
}
16+
17+
public DbSet<Customer> Customers { get; set; }
18+
}
19+
```
1020

11-
However, this feature is under development by our company. We expect to be able to release a new version of .NET Fiddle that allows creating examples with SQL Server in September.
21+
[Try it](https://dotnetfiddle.net/thNOFY)
1222

1323
## SQL Server Compact Example
1424
```csharp

0 commit comments

Comments
 (0)