在用户 ID 数据类型不长的情况下实施 rhino 安全性

发布于 2024-12-14 04:00:42 字数 131 浏览 2 评论 0原文

我想在我的应用程序上实施犀牛安全性。我有一个用户实体类,其 Id 字段是 GUID。

根据Rhino安全说明,我必须实现IUser接口,其中包含一个很长的id字段。现在我如何在不更改用户实体类的数据类型的情况下实现 IUSer 接口

i want to implement rhino security on my application. i have user entity class whose Id field is GUID.

according to Rhino security instructions i have to implement IUser interface which contains an id field which is long. now how can i implement IUSer interface without changing datatype of my user entity class

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南风起 2024-12-21 04:00:42

你在哪里看到的? IUser 接口仅要求实现者公开 SecurityInfo 属性。

IUser 源

我使用 Guid 作为我的 ID,基于它创建一个 SecurityInfo 对象。

    public virtual SecurityInfo SecurityInfo
    {
        get
        {
            return new SecurityInfo(this.Username,this.Id);
        }
    }

第一个参数是用户的名称(可以是任何字符串属性),第二个参数是您的 id,它可以是任何对象,包括 Guid。

Where'd you see that? The IUser interface only requires implementors to expose a SecurityInfo property.

IUser source

I use Guids for my Ids and create a SecurityInfo object based on it

    public virtual SecurityInfo SecurityInfo
    {
        get
        {
            return new SecurityInfo(this.Username,this.Id);
        }
    }

The first argument is the name of the user (it can be any string property) the second is your id which can be any object, including Guids.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文