Skip to content

Commit ca35ea8

Browse files
committed
Additional intellisense comments to clarify usage.
1 parent 604785e commit ca35ea8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/StackExchange.Redis/Interfaces/IServer.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,9 @@ public partial interface IServer : IRedis
270270
/// <summary>
271271
/// Execute an arbitrary command against the server; this is primarily intended for
272272
/// executing modules, but may also be used to provide access to new features that lack
273-
/// a direct API.
273+
/// a direct API. The command is assumed to be not database-specific. If this is not the case,
274+
/// <see cref="Execute(int?, string, ICollection{object}, CommandFlags)"/> should be used to
275+
/// specify the database (using <langword>null</langword> to use the configured default database).
274276
/// </summary>
275277
/// <param name="command">The command to run.</param>
276278
/// <param name="args">The arguments to pass for the command.</param>

0 commit comments

Comments
 (0)