Activities of "KuldeepRathi"

hi

You can pass the token to Abp Commercial, and log in to the Abp Commercial after verification the token.

it's custom logic or any predefined method available in ABP Commercial? if predefined methods or endpoint, provide me the list of endpoints and methods?

i already tried this but it's not working,

this piece of code add in WebModule

any another configuration ?

any other configuration for Restrict user to multiple login ?

i already tried this but it's not working,

this piece of code add in WebModule

any another configuration ?

Hi,

what about the first and second point ?

What's the stacktrace? You haven't mentioned about the exception

Do you need stacktrace? Situation in Steps-

  1. Calling InsertSync() function and Passing False as parameter {as mentioned in below sample code}
  2. If any exception comes then it should go to Catch{} loop.
  3. But currently it is not going.
  4. If we are using plain 'DbUpdateException' of EFCore, then it is raising Ex.message {Sample code added in Previou/ above message}

public async Task AddOrganization(OrganizationDto input)
        {
            try
            {

                var data = ObjectMapper.Map<OrganizationDto, Setup.Organization.Organization>(input);                                
                ~~await _orgContactRepository.InsertAsync(data, false);~~
                
            }
        **catch (DbUpdateException ex)
            {
                throw new CivitException(ex.Message, "2601");
            }**
        }
Showing 1 to 5 of 5 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11