有没有办法通过项目中类的图层组合进行过滤?

发布于 2024-12-22 11:51:08 字数 63 浏览 0 评论 0原文

例如,我只想查看在我的项目中 BOTH syp 和 cus 层中获取代码的类。

For example I only want to see the classes that got code in BOTH syp and cus layers in my project.

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

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

发布评论

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

评论(1

半衾梦 2024-12-29 11:51:08

SQL 来拯救你:

static void UtilElement2Layers(Args _args)
{
    UtilIdElements uc, u1, u2;
    while select uc
        where uc.recordType == UtilElementType::Class
        exists join u1
        where u1.parentId == uc.id
           && u1.utilLevel == UtilEntryLevel::cus
        exists join u2
        where u2.parentId == uc.id
           && u2.utilLevel == UtilEntryLevel::syp
        // && u2.id == u1.id
    {
        info(uc.name);
    }
}

SQL comes to your rescue:

static void UtilElement2Layers(Args _args)
{
    UtilIdElements uc, u1, u2;
    while select uc
        where uc.recordType == UtilElementType::Class
        exists join u1
        where u1.parentId == uc.id
           && u1.utilLevel == UtilEntryLevel::cus
        exists join u2
        where u2.parentId == uc.id
           && u2.utilLevel == UtilEntryLevel::syp
        // && u2.id == u1.id
    {
        info(uc.name);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文