Skip to content

Commit 62d73a4

Browse files
Update README.md (#194)
1 parent 9154695 commit 62d73a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ ydbCommand.CommandText = """
4848
ORDER BY series_id, season_id, episode_id
4949
LIMIT @limit_size;
5050
""";
51-
ydbCommand.Parameters.Add(new YdbParameter("$series_id", DbType.UInt64, 1U));
52-
ydbCommand.Parameters.Add(new YdbParameter("$season_id", DbType.UInt64, 1U));
53-
ydbCommand.Parameters.Add(new YdbParameter("$limit_size", DbType.UInt64, 3U));
51+
ydbCommand.Parameters.Add(new YdbParameter("series_id", DbType.UInt64, 1U));
52+
ydbCommand.Parameters.Add(new YdbParameter("season_id", DbType.UInt64, 1U));
53+
ydbCommand.Parameters.Add(new YdbParameter("limit_size", DbType.UInt64, 3U));
5454

5555
var ydbDataReader = await ydbCommand.ExecuteReaderAsync();
5656

0 commit comments

Comments
 (0)