Base solution for your next web application
Open Closed

Blob Storage Provider Error #9392


User avatar
0
maharatha created

I was trying to add the Volo.Abp.BlobStoring to by Aspnetzero project speciffically Application project and I am encountering this error :

Severity Code Description Project File Line Suppression State Error CS0121 The call is ambiguous between the following methods or properties: 'System.AbpStringExtensions.IsNullOrWhiteSpace(string)' and 'Abp.Extensions.StringExtensions.IsNullOrWhiteSpace(string)' XXXX.YYYY.Application \XXXX.YYYY.Application\Configuration\Host\HostSettingsAppService.cs 308 Active.

Also can you guide me how to integrate it for multi tenancy so that each tenant can configure their own provider, something like the way you did for External providers.


3 Answer(s)
  • User Avatar
    0
    maliming created
    Support Team

    hi

    The modules of abp and aspnetboilerplate framework are not compatible. Of course you can copy the source code of BlobStoring and change it.

    The call is ambiguous between the following methods or properties

    There are extension methods with the same signature. You can use namespace alias to solve.

  • User Avatar
    0
    maharatha created

    Is there a way I can port the code easily without rewriting everything from the ground up.

  • User Avatar
    0
    maliming created
    Support Team

    Sorry There is currently no easy way to port the codes.