RavenDBは、埋め込みモードを使用してが呼び出されInvalidOperationException
たときにスローします。IsOperationAllowedOnDocument
IsOperationAllowedOnDocument
実装では、埋め込みモードでの呼び出しをチェックする句を見ることができます。
namespace Raven.Client.Authorization
{
public static class AuthorizationClientExtensions
{
public static OperationAllowedResult[] IsOperationAllowedOnDocument(this ISyncAdvancedSessionOperation session, string userId, string operation, params string[] documentIds)
{
var serverClient = session.DatabaseCommands as ServerClient;
if (serverClient == null)
throw new InvalidOperationException("Cannot get whatever operation is allowed on document in embedded mode.");
埋め込みモードを使用しない以外に、これに対する回避策はありますか?
御時間ありがとうございます。