如题,在用户切换事件加入全局权限控制,代码如下:
If user.Type = UserTypeEnum.User For Each t As Table In Tables t.Visible = False t.AllowEdit = False NextElse For Each t As Table In Tables t.Visible = True t.AllowEdit = True NextEnd If
该代码是针对所有table设置,现想到针对datatable设置权限,请问这两种方式有何区别,适用范围如何。在这样很难取舍