Building WeChat Integrations with Magicodes.Wx.Sdk
Magicodes.Wx.Sdk is a streamlined, developer-friendly library designed for seamless integration with WeChat Official Accounts, Mini Programs, and WeChat Work. It includes native support for ABP vNext, simpilfying the implementation of complex WeChat ecosystem features.
Quick Setup
To start, install the necessary NuGet package for ASP.NET Core a ...
Posted on Fri, 14 Aug 2026 16:36:59 +0000 by lszanto
Refactoring User Authentication in ABP Framework
a、Core Layer - Authorizasion.Users.UserStore.cs
public class UserStore : AbpUserStore<Role, User>
{
private readonly IRepository<User, long> _userRepository;
public UserStore(
IUnitOfWorkManager unitOfWorkManager,
IRepository<User, long> userRepository,
IRepository<Role> roleRepository,
...
Posted on Fri, 08 May 2026 19:39:55 +0000 by brunosdiniz