Skip to content

Commit 2d95348

Browse files
authored
Remove unused backslash
1 parent f7b7287 commit 2d95348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/cosmos-db/table/create-table-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ public TablesService(TableClient tableClient)
293293

294294
The [TableClient](/dotnet/api/azure.data.tables.tableclient) class contains a method named [Query](/dotnet/api/azure.data.tables.tableclient.query) which allows you to select rows from the table. In this example, since no parameters are being passed to the method, all rows will be selected from the table.
295295

296-
The method also takes a generic parameter of type [ITableEntity](/dotnet/api/azure.data.tables.itableentity) that specifies the model class data will be returned as. In this case, the built-in class [TableEntity](/dotnet/api/azure.data.tables.itableentity) is used, meaning the `Query` method will return a `Pageable\<TableEntity\>` collection as its results.
296+
The method also takes a generic parameter of type [ITableEntity](/dotnet/api/azure.data.tables.itableentity) that specifies the model class data will be returned as. In this case, the built-in class [TableEntity](/dotnet/api/azure.data.tables.itableentity) is used, meaning the `Query` method will return a `Pageable<TableEntity>` collection as its results.
297297

298298
```csharp
299299
public IEnumerable<WeatherDataModel> GetAllRows()

0 commit comments

Comments
 (0)