Base solution for your next web application

Activities of "Bernard"

Hi I think your response is for another ticket #12036 If not I don’t understand your response for MS graph connecting

Hi,

You need to go to after login like a tenant with OpenIdConnect

Question

Hi,

It often happens that I modify an entity directly in its class, is it possible to update the Radtool generation file of this entity with the new attributes ?

Thks

Question

Hi,

I'm wondering if is it possible to change template or css ? How can i get Language texts like @L("French") for typeahead message ?

Thks

Hi,

When starting migration, I have this warning what does it mean, what should I change ?

No store type was specified for the decimal property 'TotalTVA' on entity type 'Facture'. This will cause values to be silently truncated if they do not fit in the default precision and scale. Explicitly specify the SQL server column type that can accommodate all the values in 'OnModelCreating' using 'HasColumnType', specify precision and scale using 'HasPrecision', or configure a value converter using 'HasConversion'.

Thks

Hi I followed this example https://learn.microsoft.com/en-us/training/modules/msgraph-dotnet-core-show-user-emails/1-introduction

Hi,

Thank you for your help, I really appreciate it As the file is large, I will send it to you via Wetransfer.

https://we.tl/t-mXXIpSAVOT

Good luck

Hi,

Same issue with this code :

if (bool.Parse(configuration["Authentication:OpenId:IsEnabled"])) { //if (bool.Parse(configuration["Authentication:AllowSocialLoginSettingsPerTenant"])) //{ // services.AddSingleton<IOptionsMonitor<OpenIdConnectOptions>, TenantBasedOpenIdConnectOptions>(); //}

  services
  // Add support for OpenId authentication
  .AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)
  .AddMicrosoftIdentityWebApp(configuration, "Authentication:AzureAd")
  .EnableTokenAcquisitionToCallDownstreamApi(initialScopes)
  .AddMicrosoftGraph(configuration.GetSection("Authentication:DownstreamApi"))
  .AddInMemoryTokenCaches();

  // Require an authenticated user
  //services.AddControllersWithViews(options =>
  //{
  //    var policy = new AuthorizationPolicyBuilder()
  //        .RequireAuthenticatedUser()
  //        .Build();
  //    options.Filters.Add(new AuthorizeFilter(policy));
  //});

  //services
  //    // Add Razor Pages support
  //    .AddRazorPages()

  //    // Add Microsoft Identity UI pages that provide user 
  //    .AddMicrosoftIdentityUI();

  services.AddScoped&lt;GraphProfileClient&gt;();
  services.AddScoped&lt;GraphEmailClient&gt;();
  //services.AddScoped&lt;GraphCalendarClient&gt;();
  //services.AddScoped&lt;GraphFilesClient&gt;();

};

Hi Yes it’s a single project I still running Yarn

Thks

Showing 51 to 60 of 134 entries