Base solution for your next web application

Activities of "ismcagdas"

Hi @kansoftware

Do you mean separete Apps ? If so, you can create a new application service project and a web project which will host services under the new AppService. Then, you can place all Get methods to newly created Application project.

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 [email protected] ? 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.

Showing 41 to 50 of 12766 entries