python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Counting active listings by month and year
I am currently working with real-estate data, and each Listing entity has a ListingDate and a CloseDate. What I am currently trying to do is to count how many Listings are active in a given month and ...
Shawn
Votes: 0
Answers: 2
Entity Framework Core - storing action delegate
I use Entity Framework Core. I have entity with action delegate property:
public class Student
{
public int Id { get; set; }
public string Name { get; set; }
public Action<string, int, ...
ivanof81
Votes: 0
Answers: 2
One to many relation, pass empty model
I would like to assign users to certain company (equals Customer below). For this matter I have created a models as follows:
ApplicationUser.cs:
public class ApplicationUser : IdentityUser<Guid>...

10101
Votes: 0
Answers: 1
Dereference of a possibly null reference on FirstOrDefault
I've had a look around at various related questions, but can't seem to find one that helps me get my head around this one.
I've used EF Core Power Tools to set up my DbContext; one particular entity ...

Andrew Corrigan
Votes: 0
Answers: 1