Content
Entity Framework - Db design suggestion
I have two models with many-to-many relationship: public class Person { public int PersonId { get; set; } public string Name { get; set;} public virtual ICollection<Hobby> Hobbies { get; set; } = new List<Hobby>(); } and public…


How to generate a report from ListView on WPF?
Hello ! I want to generate an Listview, based on another Listview, by moving items from first Listview to the second one and generate a report based on my second ListView and Sum the price. My first Listview is something like this: [id] [product] …


How To Disable "Restore Down" In .NET MAUI Blazor Component App
I have created one .NET MAUI Blazor Component App. I want to restrict users to not restoring down the window. Simply, I want to disable the below button in Windows as well as MAC Catalyst. [ ](https://i.stack.imgur.com/Tk8I8.png) Also, I want to force…


How to generate a test or development build of an windows desktop application using c#
I have modified my Windows application developed using c# to open through a URL now I want to share this build with my client for testing so how to create a test build in the visual studio can anyone suggest me an approach ?? Thanks in advance. …


How to store client credentials?
I am creating a WebAPI (Core/ .Net 6). When creating the Registration for the app i add some client credentials. I noticed once i have them i cant view one half of the credentials again. I did a test by making a call to ..{tenant_id}/oauth2/v2.0/token…


<I'm getting error while installing the .net framework 4.8 for windows 2019 server > Error message: 0x80092004 -can not find object or property
For windows 2019 server - I'm getting error while installing the .Net framework 4.8 version . Error Message : 0x80092004 -can not find object or property Log details : [0B30:1D94][2023-05-29T12:11:44]i001: Burn v3.14.0.2812, Windows v10.0 (Build 17763:…


Moving Website from .net 4.8 to .net 6 - mod rewrite of redirection of aspx pages to cshtml
Moving Website from .net 4.8 to .net 6 - I have webpages with next to no c# written for .net 4.8 and the webpages end in .aspx I want move to .net 6.0 with Blazor and the webpages will end in cshtml. how do I redirect to the new cshtml pages using a…


host the blazor wasn in IIS
Hi, I've created the application with blazor wasm. The application run well in VStudio 2022. I publish in the folder. it's OK I run the .exe the app works well! After that, I move on to configure IIS. I create the site and configure the pool. I…


Blazor HttpClientHandler times out
I'm not sure if this is the correct area to ask this question so if it's not please can you point me to the right place.... I've got a Blazor server app and it uses HttpClientHandler and IHttpClientFactory to call the Data API. When my app is deployed…


Binding redirect .NET core
Hi I have a .NET core web application. It depends on myCore.dll, which version 1.0.0 After sometime, myCore.dll is updated with new function. Its version has been increased to 1.1.0. After I replaced myCore.dll v 1.0.0 with 1.1.0 to bin, and restart my…


Edit and save word document in browser
Hi, Users can upload word document and those are saved in project folder. My requirement is user can edit and save uploaded word document in browser. After save the word content need to export it as pdf. I have tried to convert word document content…


Blazor Tags css styles
Dear Community! I already asked on reddit but nobody could help me. How can i apply css styles from the name.razor.css file to Blazor custom tags like the <InputText> for example? Defining styles for input or creating as custom class do not work…


Carousel view setting default position not working in maui
Carousel view setting default position not scrolling to item on page load in maui. After data is loaded to carousel view, updating position not working. CarouselView.Position = index;


Binding to Shell.NavBarIsVisible property of AppShell.xaml
I was trying to bind to Shell.NavBarIsVisible property so as to hide and unhide the navigation bar as desired. Basically, I wanted to hide the navigation bar for a certain page, only leaving the option of device hardware Back Button. The binding…


How to implement circular progress bar in xamarin forms all 3 platforms
I want to implement circular progress bar with progress in all 3 platforms i.e. Xamarin Forms Android, ios, UWP The progress bar minimum value is 1 and maximum is 6 when we click a button it needs to increment to 2 and progress need to update in the…


net maui how to create collection view as menu and carouselview as content working like tabs ?
net maui how to create collection view menu and carouselview content working like tabs ? Platform Android and Ios
Azure AppServiceでのASP.NET CoreのIdentity認証の検証メール送付のエラー
お世話になります。 Identity認証の検証メール送付について ASP.NET Coreの開発段階でIISからは認証用の検証メールが送付できて受信メールから、認証が承認されるようになりましたが、Azure AppServiceにデプロイしてwebで動作確認したところアカウント作成またはパスワードの再発行での検証メールが送付されず「Error. An error occurred while processing your…
Is it possible to delete a WMI/CIM class using the Microsoft.Management.Infrastructure?
Every time I write a script, or code that uses WMI extensively, I tend to use the System.Management API. It's straight forward, flexible, and intuitive. However, This time I decided to use the Microsoft.Management.Infrastructure API, which contains the…


Where can I discuss pricing for .net MVC project on Azure?
Not satisfied with using the pricing calculator. Is there any way to communicate with a human being about pricing options? The forum does not seem to be the place (I've asked questions about pricing before and they were removed). I'm trying to…


How do I build a .NET WinUI 3 App without VisualStudio?
Let's say that the VisualStudio license terms don't fit my use case. Perhaps my employer defines itself as a "Java shop", and I'd like to show them the goodness of native apps. But I can't do so by producing an app they're not free to…