在业务逻辑层使用静态类

发布于 2024-12-04 23:59:16 字数 656 浏览 1 评论 0原文

我知道我的问题的答案可能涉及选择特定的方法,但我尝试详细解释我想要找出的内容:

考虑一个简单的 3 层应用程序(DAL、BLL、PL)。
DAL 使用 EF 4.1 Code-First,并且对数据的访问包含在存储库中。

现在,在 BLL 中,我有 Manager 类。 (例如UserManagerProductManager),它们都派生自BaseManager。我的 Manager 类中的几乎每个方法都将其相关实体作为参数并对其执行适当的操作。例如在 UserManager (伪代码)中:

public bool AddPermission(User user, PermissionItem permission)
{
    this.repository.Add(permission);
    this.save();
}  

问题是:我的管理器类不需要实例化。它们可以被定义为静态的。
但是,如果我将它们定义为静态,我应该在每个类中创建我的共享方法和成员(如存储库和其他几个成员)(我不想将存储库等成员定义为静态)。

那么您是否建议我应该将确实是静态的 Manager 类更改为静态类?或者按原样使用它们可以吗?

I am aware that the answer to my question might involve choosing a specific approach, But I try to explain what I'm trying to find out with details:

Consider a simple 3-layer application (DAL, BLL, PL).
DAL uses EF 4.1 Code-First and access to data is wrapped up in a reposiory.

Right now, in BLL, I have Manager classes. (e.g. UserManager, ProductManager) which all derive from BaseManager. Almost each method in my Manager classes take their related entity as a parameter and perform the appropriate operations on it. e.g. in UserManager (Pseudo code):

public bool AddPermission(User user, PermissionItem permission)
{
    this.repository.Add(permission);
    this.save();
}  

Question is: My manager classes do not need to get instantiated. they can be defined static.
But if I define them static, I should create my shared methods and members (like repository, and a couple of other members) in each class (I do not want to define members like repository as static).

So do you suggest I should change my Manager classes that are indeed meant to be static to static classes? or is it ok using them as they are?

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

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

发布评论

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

评论(3

画尸师 2024-12-11 23:59:16

恕我直言,静态类只不过是函数的容器(而不是真正的对象)。不同的是,非静态类可以通过构造函数派生并获取其依赖项。

尝试为静态类编写适当的测试。

您可能不希望它们成为今天的实例,但是明天呢?如果将它们更改为静态,则必须重构所有依赖代码以取消它们的静态状态。

我宁愿开始使用控制反转容器来管理它们的创建和实例。

imho static classes are nothing more than containers for functions (and not real objects). The difference is that non-static classes can be derived and get their dependencies through the constructor.

Try to write proper tests for a static class.

You might not have intended for them to be instances today, but what about tomorrow? If you change them to static, you'll have to refactor all your depending code to unmake them static.

I would rather start using an inversion of control container to manage their creation and instances.

她如夕阳 2024-12-11 23:59:16

我认为没有理由让它们静态。据我所知,这只会使 API 和实现变得复杂。您的调用者将从哪里检索存储库?他们应该为每个电话查找它吗?那太浪费了。最好查找一次并将其存储在管理器中。这就是实例变量的用途。

I see no reason to make them static. As far as I can see, it would only complicate the API and the implementation. And where would your callers retrieve the repository from? Should they look it up for each call? That's wasteful. Far better to look it up once and store it within the manager. That's what instance variables are for.

浅语花开 2024-12-11 23:59:16

我喜欢创建一个包含所有实例的静态“目录”(该对象的正确名称实际上是存储库)。例如:

public static Class BusinessRepository
{
    private static Users users = new Users();

    public static Users Users
    {
        get
        {
            return users;
        }
    }
}

BusinessRepository 类是静态的,但 Users 是其中包含的实例对象。然后可以这样访问:

BusinessRepository.Users.DoSomething();

通过这种方式,您可以通过静态访问来保留对象实例及其带来的所有好处。

很多人不同意这些“全局变量”,因为他们会这样称呼它们,但这是你要做出的判断。看来您已经做出了对此感到满意的决定,因为您已经在谈论静态类了。

I like to create a static "directory" (the correct name for this object is actually repository) that contains all my instances. For example:

public static Class BusinessRepository
{
    private static Users users = new Users();

    public static Users Users
    {
        get
        {
            return users;
        }
    }
}

The BusinessRepository class is static, but Users is an instance object contained within it. This can then be accessed like this:

BusinessRepository.Users.DoSomething();

This way you get to keep your object instances and all the benefits that they bring, with static like access to them.

A lot of people dont agree with these sort of "global variables" as they will call them, but that is your judgement call to make. It seems like you've already made the decision that you're happy with this as you're already talking about static classes.

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