1,623,849 questions
- Bountied 1
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
26
views
Deserialize an XML with multiple namespaces
I am trying to deserialize an XML file with the following structure:
<file:Process xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:xsi="http://www.w3.org/...
0
votes
1
answer
23
views
DbContext being auto added to DI container
I'm in the process of removing .NET Aspire from my application and whilst this has been a mostly painless process, I'm having no end of issues getting my DbContext working the way I think it's meant ...
0
votes
0
answers
35
views
DragDrop Copy effects with PictureBoxes? Is it making an actual copy of the source file?
I'm currently trying to create a simple drag-drop effect using pictureboxes. It works perfectly fine; however, I'm then trying to deduce the drop target's resource file in order to know if it needs to ...
0
votes
1
answer
44
views
Validating Hidden Field
In my ASP.NET Core application, I have a signature pad with JavaScript that copies the signature data to a hidden field. That hidden field, which represents the signature, is required.
The problem is ...
1
vote
0
answers
21
views
Persistent NullReferenceException on List Add (.Items.Add) after PlayFab Login
I am transitioning a local-storage .NET MAUI Quest tracker into a gamified application using a Server-Authoritative PlayFab backend. The app successfully launches, but it crashes with a System....
0
votes
0
answers
24
views
Is there a way to have toast notifications on Avalonia application with NuGet? [closed]
I tried to search everywhere if there's a way to implement toast notifications in Avalonia but I didn't find anything interesting.
I'm looking for this because I had developed an application in WPF ...
-2
votes
1
answer
62
views
How to implement async task version of function [closed]
I'm reasonably new to C#, I am using Microsoft Visual Studio Professional 2022. I have a function:
static bool sblnSendPacket(byte[] arybytPacket) {
const string cstrServer = "localhost"...
0
votes
0
answers
17
views
Typesense filter_by: starts-with filter returns too few results and combined filters return 0
I'm having an issue with Typesense when using a starts-with filter inside filter_by.
I'm using .NET 8 and the official Typesense NuGet client.
In my schema I have these fields:
new Field("fl_adep&...
0
votes
1
answer
52
views
Can auto-mapper transform the record into the single string value?
Having product-attributes relation (one to many)...
public class Product
{
public int Id {get; set; }
public string Code { get; set; }
public string Name { get; set; }
public List<...
1
vote
3
answers
101
views
How to upgrade a .Net 4.8 project up to .NET 8.0?
I have a project, whose target framework is .NET Framework 4.8. I'd like to updgrade this to .NET 8.0.
Up to now, I have the following information in my project properties:
I'd like to upgrade, but ...
-1
votes
1
answer
49
views
Is there a way to see all objects while debugging in Visual Studio?
Is there any way, using the Visual Studio debugger, to see all the objects belonging to the application currently running? e.g. for tracking down rogue instances of a class that might be still hanging ...
1
vote
0
answers
31
views
Unable to Stop or Reset Local Durable Azure Function Execution (Orchestrator Keeps Resuming Previous State)
I have built a Durable Azure Function that performs an ETL process—fetching data from an API, converting it into a relational structure, and transforming it. The solution uses a Durable Functions ...
2
votes
1
answer
72
views
CA1873 Evaluation of this argument may be expensive and unnecessary if logging is disabled
I'm in the process of upgrading to .NET 10 and I ran into to this compiler suggestion:
CA1873 Evaluation of this argument may be expensive and unnecessary if logging is disabled
It references to ...
0
votes
0
answers
36
views
NPOI fails to load assembly in Mount and Blade 2 mod project
I am trying to make a mod for Mount and Blade 2 game which involves loading an Excel spreadsheet for game configuration. The mod project is a .NET Framework 4.7.2 class library project and NPOI 2.7.5 ...
0
votes
0
answers
32
views
Unity 2D how to spawn platforms and ropes together?
I'm making a 2D endless runner game that inspired by Dino Google Game.
I put PlatformSpawner outside to right of camera view. Then I put PlatformSpawner.cs into it. I made some prefabs called "...