Base solution for your next web application

Activities of "ismcagdas"

Hi @nexgenvisibility

For the next version v10.0, we are focusing on .NET 9 upgrade. So, these features will not be added for the short term. Here are my answer to your questions;

  1. Since we haven't analyzed how to implement this, unfortunately we can't provide a guide for you. To implemnet this, edition price must be calculated dynamically based on number of users of registered tenant.
  2. We currently provide Monthly and Yearly periods. You need to first add Weekly to PaymentPeriodType enum. Then, you need to search for example usages of PaymentPeriodType.Annual and implement weekly accordingly.
  3. Not for v10. at least.

Since we get many requests for these features/enhancements, I will add these items to v10.1 for evaluation.

Hi,

You can try the solution below;

  1. First define a document filter like this
public class MyCustomDocFilter : IDocumentFilter
{
	public void Apply(OpenApiDocument swaggerDoc, DocumentFilterContext context)
	{
		swaggerDoc.Components.Schemas.Remove("Duration");
	}
}
  1. Then, use this in your Startup.cs as shown below;
private void ConfigureSwagger(IServiceCollection services)
{
	services.AddSwaggerGen(options =>
	{
		......
		options.DocumentFilter<MyCustomDocFilter>();
		.....
	});
}

Can you use it in your code ? It might be coming from a library you are using.

Hi @kalidarscope

There must be a class named Duration defined on the server side. Could you search your project and see if it exists ?

Hi @huntethan89

Your Startup file seems fine. Is it possible to share your latest source code with support@aspnetzero.com ? We will investigate your project to detect possible causes.

Hi @dominici

We don' suggest setting useConventionalHttpVerbs = false. If you are going to use Angular as your client app, we are using NSWAG and it will auto-generate client proxy classes for you.

Hi @huntethan89

Could you share your final Startup.cs ?

Answer

Hi @mittera

Thanks for sharing your solution :) I hope it will not cause any issues in the future.

Hi,

I just checked your project and it seems like you haven't moved to module per page approach in your project. I think that is the problem. As you can see here https://github.com/aspnetzero/aspnet-zero-core/blob/dev/angular/src/app/admin/webhook-subscription/webhook-subscription.module.ts, we created a module for each page in the Angular app and it imports several otehr modules.

You can try to move to this approach manually and see if it helps.

Showing 81 to 90 of 12805 entries