1,624,045 questions
1
vote
0
answers
1
view
Wolverine servicebus: dynamically create tenants
We recently decided to move from MassTransit to Wolverine for sending messages using Azure Service Bus. However, we’ve run into some issues with our multi-tenant setup.
Our setup looks as follows:
...
0
votes
0
answers
14
views
Cannot execute Puppeteer in IIS
I have an ASP.NET Core 8.0 Web API created with C# that provides an endpoint to create PDFs from HTML markup. I use PuppeteerSharp to create the PDF, and it worked fine locally, but it does not work ...
0
votes
0
answers
21
views
Grabbing User Lockout location in C#
I would like if anyone knows a way to retrieve the lockout location of a user. Is the best way to do that is to read the eventlog from the domain and extract the location from the security event or is ...
0
votes
0
answers
25
views
MudBlazor Login Dialog: Enter key needs to be pressed twice before login works
I'm using C# / .NET 9 and MudBlazor, and I've implemented a login dialog with username and password fields.
The login works fine, except that I have to press ‘Enter’ twice before the dialog closes and ...
0
votes
0
answers
43
views
Are there any significant drawbacks to directly accessing a DbContext in a Razor View (non-Blazor)?
In ASP.NET MVC web applications, it is generally recommended to acquire data in the controllers (whether that should involve using a DbContext directly or through a service layer is up for debate), ...
0
votes
0
answers
22
views
unity android dependency resolver is stuck at 0%
image resolver is stuck at 0%
Running Gradle...
E:\game project\spaceFighterMobile\Temp\PlayServicesResolverGradle\gradlew.bat --no-daemon -b "E:\game project\spaceFighterMobile\Temp\...
-3
votes
0
answers
67
views
Why doesn't my DrawString() code add text under a logo? [closed]
The Print DocI tried to add the text under logo in print preview, but it's not working. I also tried to add Logo.Width, but it's not working either.
The e.Graphics.DrawString line is not working, but ...
0
votes
0
answers
18
views
How do I implement an Event based trigger in Elsa Workflows 3?
I'm using Elsa Workflows 3 for a project, and there are four types of triggers (source):
HTTP Endpoint: triggers the workflow when a given HTTP request is sent to the workflow server.
Timer: triggers ...
0
votes
0
answers
45
views
.NET Framework update to new version - .NET 4 to .NET 4.8 [closed]
I have a project running on .NET 4 and it only runs in Visual Studio 2010 web developer express.
I want to upgrade the project to .NET 4.8.
There are the steps I followed:
Open the solution in VS ...
-1
votes
0
answers
55
views
Add a value from an existing database to the datagridview cell depending on a user's input in another cell
I am currently working on a tool with C# & SQL.
This tool grabs information and displays it in a DataGridView.
In one of the cells in the DataGridView, the user can input a date in YYYY/MM/DD ...
-3
votes
1
answer
99
views
How to achieve that a MessageBox opens in front of a Notepad window started by my program [duplicate]
I start Notepad in order to display a file generated in my program. Depending on the file content, the user is expected to respond by hitting a button in a MessageBox.
My problem is that the ...
-2
votes
1
answer
50
views
How flexible is SignInManager for custom DBs and AD? [closed]
The goal is to process logins with ASP.NET Core's SignInManager, but users can come from different sources:
Standard identity tables
Existing customer databases with user-defined structures and ...
0
votes
0
answers
81
views
Is it possible to define a navigation property without a foreign key in EF Core when using microservices?
Disclaimer: I’m still new to designing micro service architectures.
After a user obtains an access token from an external identity provider, I want them to be allowed to access the /questions endpoint ...
-3
votes
0
answers
52
views
Issues deserializing JSON from VMWare API [closed]
So I'm querying VMWare vCentre /api/vcenter/vm/{vmid}/guest/networking/interfaces, and getting the below response:
[
{
"mac_address": "00:50:56:XX:XX:XX",
"ip": ...
0
votes
0
answers
33
views
Excel RTD: UpdateNotify() ignored after data source reconnects - how to force RefreshData()?
I'm working on a C# RTD server that connects to a data Source. When the Source disconnects and reconnects, Excel stops responding to UpdateNotify() calls even though Heartbeat() continues being called ...