Base solution for your next web application

Activities of "m.aliozkaya"

Hi @huntethan89,

Please refactor your async void codes to async Task.

If you have async overload of methods please use async methods instead of sync methods.

Hi @ricardo,

We have successfully executed the project and will provide you with an update at the earliest opportunity.

Hi @pliaspzero,

This problem relates to your Azure settings or HTTP client settings in your code.

Could you check this issue? https://github.com/Azure/azure-functions-host/issues/8168

Hi @uenlkr4e,

Could you try to implement ITransientDependency to DoSomethingclass?

Hi @uenlkr4e,

Can you show your implementation code?

Hi @truist.software,

Could you share your project with [email protected] ?

Hi @truist.software,

Do you have a cookie like this?

You may also have forgotten about using middleware.

Hi @uenlkr4e,

ABP ensures that the same job is not executed twice by marking jobs as "IsAbandoned" when fetched and excluding them from subsequent fetches until they are completed or failed. This mechanism prevents duplicate execution and ensures reliable job processing.

https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp/BackgroundJobs/BackgroundJobInfo.cs

Hi @[email protected],

What is your product version? This typically happens when there is a mismatch between the versions of the assemblies being referenced or when the required assembly is not properly loaded or available.

Check your .csproj file and update all MAUI-related packages to the same version.

<PackageReference Include="Microsoft.Maui.Controls" Version="x.x.x" /> <PackageReference Include="Microsoft.Maui.Graphics" Version="x.x.x" />

Then;

  • Go to Build > Clean Solution.
  • Then, go to Build > Rebuild Solution.

Hi @JapNolt,

You should update TenantCacheItem

[Serializable]
public class CustomTenantCacheItem : TenantCacheItem
{

    // new property
    public string CustomProperty { get; set; }
}

Then create and use your own custom cache instead of the ones here.

https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.Zero.Common/MultiTenancy/ITenantCache.cs#L5

https://github.com/aspnetboilerplate/aspnetboilerplate/blob/679d9fb8722cda5da82bffcda31b0de2f06fa3a1/src/Abp.Zero.Common/MultiTenancy/TenantCache.cs#L12

Showing 1 to 10 of 429 entries