Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个 DNN 站点。我需要在注册用户时同步用户表。IE。如果用户在站点 1 注册,该用户将在站点 2 中可用。所以我需要使用后面的查询
用户控制器。创建用户(用户信息)。
您必须在UserProtal表中创建条目,例如,您有两个 id 为 0 和 1 的门户。如果用户注册到门户 0,UserController.CreateUser将在UserPortal表中创建具有门户 0 和新用户 ID 的条目。创建用户后,您必须在同一个表中为门户 1 和新用户 ID 创建相同类型的条目。
UserProtal
UserController.CreateUser
UserPortal
如果您对此有任何其他问题,请告诉我