Paul DeVito
Paul DeVito
I have an entity that looks like this in a .NET 6 project: ```csharp public class Recipe { public string Title { get; set; } public DateOnly Dob { get;...
fixes #83 This lets devs globally set the `DateTimeKind` of generated dates to, for example, more easily accommodate UTC in integration tests. If #84 is approved, I'll add this toggle...
fixes #76 tried to follow your pattern throughout and included a test for the new type. I did have to do some minor update fluent assertion updates as well. let...
## What Issue Does This Solve? As of .NET 6, [NpgSQL is more strict with date time types](https://www.npgsql.org/efcore/release-notes/6.0.html#major-changes-to-timestamp-mapping) and defaults to UTC. I think this is a good thing, but...
**Describe the bug** Filtering by `DateOnly` does not work **To Reproduce** Filtering by a `DateTime` works: ```csharp [Test] public async Task can_filter_author_list_using_date() { //Arrange var DateTimeNow = DateTime.Now; var fakeAuthorOne...
So I have a simple mapping below to convert between a `string` and `Email`. ```c# public void Register(TypeAdapterConfig config) { config.NewConfig() .MapWith(value => new Email(value)); config.NewConfig() .MapWith(email => email.Value); }...
### NextUI Version 2.2.9 ### Describe the bug As described [in the docs](https://nextui.org/docs/components/dropdown#dropdown-props), adding an `isDisabled` prop and setting it to true does not disable a dropdown ### Your Example...
if I do this: ```csharp services.AddHangfire((serviceProvider, hangfireConfig) => hangfireConfig.UseEFCoreStorage( serviceProvider.GetRequiredService, new EFCoreStorageOptions { Schema = "hangfire", })); ``` with this in my onmodelcreating ```csharp modelBuilder.OnHangfireModelCreating(); ``` i am not seeing...
All guid work in all other scenarios that I'm aware of, but this one particular path is still broken
ex: ```csharp [Fact] public async Task can_filter_by_string_for_nested_collection() { // Arrange var testingServiceScope = new TestingServiceScope(); var faker = new Faker(); var fakePreparationOne = new IngredientPreparation() { Text = faker.Lorem.Sentence() };...