Skip to content

Commit 86c031c

Browse files
authored
Update json-columns.cs (#343)
Added missing indentation and removed extraneous semicolon
1 parent 5ccfbe7 commit 86c031c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

samples/ef-core/json/json-columns.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class AuthorContext : DbContext
4949
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
5050
{
5151
optionsBuilder.UseOracle("User Id=<USER>; Password=<PASSWORD>; Data Source=<DATA SOURCE>"
52-
, b => b.UseOracleSQLCompatibility(OracleSQLCompatibility.DatabaseVersion21)); ;
52+
, b => b.UseOracleSQLCompatibility(OracleSQLCompatibility.DatabaseVersion21));
5353
}
5454

5555
protected override void OnModelCreating(ModelBuilder modelBuilder)
@@ -76,8 +76,8 @@ public static void Main()
7676
Name = "John Smith",
7777
Contact = new ContactDetails()
7878
{
79-
Phone = "555 123 4567",
80-
Address = new Address("1 Any Street", "Austin", "78741", "US")
79+
Phone = "555 123 4567",
80+
Address = new Address("1 Any Street", "Austin", "78741", "US")
8181
}
8282
};
8383

0 commit comments

Comments
 (0)