nsidhu

Results 14 comments of nsidhu

I tried all singleton, transient & scoped, same error ``` builder.Services.AddScoped(); var setting = new RefitSettings { ContentSerializer = new NewtonsoftJsonContentSerializer( new JsonSerializerSettings { ContractResolver = new CamelCasePropertyNamesContractResolver() }) };...

Yes I am in setting in project file as shown in the document. Sent from Yahoo Mail for iPhone On Saturday, September 25, 2021, 8:59 AM, Claire Novotny ***@***.***> wrote:...

Please also include the following scenarios in your document. 1. When RCL is using Nuget Package, the way to reference Script & CSS Files in MAUI Project(or consuming project) is...

I am creating the Azure Synapse Analytic workspace as shown in this article https://learn.microsoft.com/en-us/azure/synapse-analytics/security/synapse-workspace-managed-vnet My question is inside of Synapse Workspace i create linked service, that should connect to my...

Adding some more information on DI. I have tried Singleton & Scoped as well ``` builder.Services.AddTransient(); var setting = new RefitSettings { ContentSerializer = new NewtonsoftJsonContentSerializer( new JsonSerializerSettings { ContractResolver...

I used the suggestion from this post and now using json.net since it provide the capability to write custom convert. https://stackoverflow.com/questions/28155169/how-to-programmatically-choose-a-constructor-during-deserialization

builder.Services.Replace(ServiceDescriptor.Scoped()); This one replaces for the whole application. Is there one just for your Blazored Component ( and that too may be temporarily for such odd objects and then revert...

@jpalvarezl @trrwilson any updates on this ?