Activities of "maliming"

hi

It works now. Can you try again?

Your ticket has been refuneded

Thanks.

hi

Thanks. Can you also share some code of the mapper and your custom app service?

hi

However, when using the same mappings inside a service that derives from the ABP identity service:

Can you share some demo code and exception logs?

Thanks.

Great!

大概2周会发布

Great

using System;
using System.Collections.Generic;
using Volo.Abp.Domain.Entities;

namespace Volo.Abp.Identity.UserInvitations;

public class UserInvitation : AggregateRoot<Guid>
{
    public Guid? InviterTenantId { get; protected set; }

    public string InviteeEmail { get; protected set; }

    public DateTimeOffset InvitationDate { get; protected set; }

    public List<string> AssignedRoles { get; protected set; }

    public UserInvitationStatus Status { get; protected set; }

    protected UserInvitation()
    {

    }

    public UserInvitation(
        Guid id,
        Guid? inviterTenantId,
        string inviteeEmail,
        List<string> assignedRoles,
        DateTimeOffset invitationDate,
        UserInvitationStatus status = UserInvitationStatus.Pending) : base(id)
    {
        InviterTenantId = inviterTenantId;
        InviteeEmail = inviteeEmail;
        AssignedRoles = assignedRoles;
        InvitationDate = invitationDate;
        Status = status;
    }

    public void SetAssignedRoles(List<string> assignedRoles)
    {
        AssignedRoles = assignedRoles ?? [];
    }

    public void SetStatus(UserInvitationStatus status)
    {
        Status = status;
    }
}

hi

你可以添加下面的实体到dbcontext然后更新迁移文件

public DbSet<UserInvitation> UserInvitations { get; set; }

SqlException: 列名'Leaved'无效.

迁移不是最新的.

hi

RC 2 has some problems. We will fix them in RC 3.

And Angular UI will support it in the next versions.

Thanks.

hi

If EF Core DbContext supports Microsoft Entra ID authentication with a Service Principal , then abp will support it.

Thanks.

Showing 1 to 10 of 12125 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.3.0-preview. Updated on March 13, 2026, 12:51
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.