├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Directory.Build.props ├── Directory.Build.targets ├── EFCore.Sqlite.NodaTime.Tests ├── DesignTimeServicesTests.cs ├── EFCore.Sqlite.NodaTime.Tests.csproj ├── InstantQueryTests.GetCurrentInstant_From_Instance.verified.txt ├── InstantQueryTests.cs ├── LocalDateQueryTests.Equal.verified.txt ├── LocalDateQueryTests.GreaterThan.verified.txt ├── LocalDateQueryTests.LessThan.verified.txt ├── LocalDateQueryTests.Methods.Combination.verified.txt ├── LocalDateQueryTests.Methods.PlusDays.verified.txt ├── LocalDateQueryTests.Methods.PlusMonths.verified.txt ├── LocalDateQueryTests.Methods.PlusWeeks.verified.txt ├── LocalDateQueryTests.Methods.PlusYears.verified.txt ├── LocalDateQueryTests.Methods.ToDateOnly.verified.txt ├── LocalDateQueryTests.Methods.ToDateTimeUnspecified.verified.txt ├── LocalDateQueryTests.Properties.Day.verified.txt ├── LocalDateQueryTests.Properties.DayOfWeek.verified.txt ├── LocalDateQueryTests.Properties.DayOfYear.verified.txt ├── LocalDateQueryTests.Properties.Month.verified.txt ├── LocalDateQueryTests.Properties.Year.verified.txt ├── LocalDateQueryTests.Select_Day.verified.txt ├── LocalDateQueryTests.Select_DayOfWeek.verified.txt ├── LocalDateQueryTests.Select_DayOfYear.verified.txt ├── LocalDateQueryTests.Select_Equal.verified.txt ├── LocalDateQueryTests.Select_GreaterThan.verified.txt ├── LocalDateQueryTests.Select_LessThan.verified.txt ├── LocalDateQueryTests.Select_Month.verified.txt ├── LocalDateQueryTests.Select_Year.verified.txt ├── LocalDateQueryTests.Update.verified.txt ├── LocalDateQueryTests.cs ├── LocalDateTimeDateDiffQueryTests.DateDiffHour.verified.txt ├── LocalDateTimeDateDiffQueryTests.DateDiffMillisecond.verified.txt ├── LocalDateTimeDateDiffQueryTests.DateDiffMinute.verified.txt ├── LocalDateTimeDateDiffQueryTests.DateDiffMonth.verified.txt ├── LocalDateTimeDateDiffQueryTests.DateDiffSecond.verified.txt ├── LocalDateTimeDateDiffQueryTests.DateDiffWeek.verified.txt ├── LocalDateTimeDateDiffQueryTests.DateDiffYear.verified.txt ├── LocalDateTimeDateDiffQueryTests.cs ├── LocalDateTimeQueryTests.Equal.verified.txt ├── LocalDateTimeQueryTests.GreaterThan.verified.txt ├── LocalDateTimeQueryTests.LessThan.verified.txt ├── LocalDateTimeQueryTests.Methods.Combination.verified.txt ├── LocalDateTimeQueryTests.Methods.PlusDays.verified.txt ├── LocalDateTimeQueryTests.Methods.PlusHours.verified.txt ├── LocalDateTimeQueryTests.Methods.PlusMilliseconds.verified.txt ├── LocalDateTimeQueryTests.Methods.PlusMinutes.verified.txt ├── LocalDateTimeQueryTests.Methods.PlusMonths.verified.txt ├── LocalDateTimeQueryTests.Methods.PlusSeconds.verified.txt ├── LocalDateTimeQueryTests.Methods.PlusWeeks.verified.txt ├── LocalDateTimeQueryTests.Methods.PlusYears.verified.txt ├── LocalDateTimeQueryTests.Methods.ToDateTimeUnspecified.verified.txt ├── LocalDateTimeQueryTests.Properties.Date.verified.txt ├── LocalDateTimeQueryTests.Properties.Day.verified.txt ├── LocalDateTimeQueryTests.Properties.DayOfWeek.verified.txt ├── LocalDateTimeQueryTests.Properties.DayOfYear.verified.txt ├── LocalDateTimeQueryTests.Properties.Hour.verified.txt ├── LocalDateTimeQueryTests.Properties.Minute.verified.txt ├── LocalDateTimeQueryTests.Properties.Month.verified.txt ├── LocalDateTimeQueryTests.Properties.Second.verified.txt ├── LocalDateTimeQueryTests.Properties.TimeOfDay.verified.txt ├── LocalDateTimeQueryTests.Properties.Year.verified.txt ├── LocalDateTimeQueryTests.Select_Date.verified.txt ├── LocalDateTimeQueryTests.Select_Day.verified.txt ├── LocalDateTimeQueryTests.Select_DayOfWeek.verified.txt ├── LocalDateTimeQueryTests.Select_DayOfYear.verified.txt ├── LocalDateTimeQueryTests.Select_Equal.verified.txt ├── LocalDateTimeQueryTests.Select_GreaterThan.verified.txt ├── LocalDateTimeQueryTests.Select_Hour.verified.txt ├── LocalDateTimeQueryTests.Select_LessThan.verified.txt ├── LocalDateTimeQueryTests.Select_Minute.verified.txt ├── LocalDateTimeQueryTests.Select_Month.verified.txt ├── LocalDateTimeQueryTests.Select_Second.verified.txt ├── LocalDateTimeQueryTests.Select_TimeOfDay.verified.txt ├── LocalDateTimeQueryTests.Select_Year.verified.txt ├── LocalDateTimeQueryTests.Update.verified.txt ├── LocalDateTimeQueryTests.cs ├── LocalTimeQueryTests.Equal.verified.txt ├── LocalTimeQueryTests.GreaterThan.verified.txt ├── LocalTimeQueryTests.LessThan.verified.txt ├── LocalTimeQueryTests.Methods.Combination.verified.txt ├── LocalTimeQueryTests.Methods.PlusHours.verified.txt ├── LocalTimeQueryTests.Methods.PlusMilliseconds.verified.txt ├── LocalTimeQueryTests.Methods.PlusMinutes.verified.txt ├── LocalTimeQueryTests.Methods.PlusSeconds.verified.txt ├── LocalTimeQueryTests.Methods.ToTimeOnly.verified.txt ├── LocalTimeQueryTests.Properties.Hour.verified.txt ├── LocalTimeQueryTests.Properties.Minute.verified.txt ├── LocalTimeQueryTests.Properties.Second.verified.txt ├── LocalTimeQueryTests.Select_Equal.verified.txt ├── LocalTimeQueryTests.Select_GreaterThan.verified.txt ├── LocalTimeQueryTests.Select_Hour.verified.txt ├── LocalTimeQueryTests.Select_LessThan.verified.txt ├── LocalTimeQueryTests.Select_Minute.verified.txt ├── LocalTimeQueryTests.Select_Second.verified.txt ├── LocalTimeQueryTests.Update.verified.txt ├── LocalTimeQueryTests.cs ├── MethodQueryTests.cs ├── MigrationTests.Migration_Generates_Correct_MigrationCode.verified.txt ├── MigrationTests.Migration_Generates_Correct_SnapshotCode.verified.txt ├── MigrationTests.cs ├── ModuleInitializer.cs ├── NodaTimeContext.cs ├── NodaTimeTypes.cs ├── QueryTests.cs ├── SqliteNodaTimeDbContextOptionsBuilderExtensionsTests.cs ├── SqliteNodaTimeServiceCollectionExtensionsTests.cs └── SqliteNodaTimeTypeMappingSourcePluginTests.cs ├── EFCore.Sqlite.NodaTime.sln ├── EFCore.Sqlite.NodaTime ├── Constants.cs ├── Design │ └── Internal │ │ └── SqliteNodaTimeDesignTimeServices.cs ├── EFCore.Sqlite.NodaTime.csproj ├── Extensions │ ├── NodaTimePatternExtensions.cs │ ├── SqliteNodaTimeDbContextOptionsBuilderExtensions.cs │ ├── SqliteNodaTimeDbFunctionsExtensions.cs │ ├── SqliteNodaTimeServiceCollectionExtensions.cs │ └── Utilities.cs ├── Infrastructure │ └── Internal │ │ └── SqliteNodaTimeOptionsExtension.cs ├── Query │ ├── ExpressionTranslators │ │ └── Internal │ │ │ ├── SqliteNodaTimeDateDiffFunctionsTranslator.cs │ │ │ ├── SqliteNodaTimeMemberTranslator.cs │ │ │ ├── SqliteNodaTimeMemberTranslatorPlugin.cs │ │ │ ├── SqliteNodaTimeMethodCallTranslator.cs │ │ │ └── SqliteNodaTimeMethodCallTranslatorPlugin.cs │ └── Internal │ │ └── SqliteNodaTimeEvaluatableExpressionFilterPlugin.cs ├── Scaffolding │ └── Internal │ │ └── SqliteNodaTimeCodeGeneratorPlugin.cs ├── Storage │ └── Internal │ │ ├── SqliteInstantTypeMapping.cs │ │ ├── SqliteLocalDateTimeTypeMapping.cs │ │ ├── SqliteLocalDateTypeMapping.cs │ │ ├── SqliteLocalTimeTypeMapping.cs │ │ ├── SqliteNodaTimeTypeMappingSourcePlugin.cs │ │ ├── SqlitePatterns.cs │ │ └── SqliteTypeMapping.cs └── build │ └── netstandard2.0 │ └── EntityFrameworkCore.Sqlite.NodaTime.targets ├── LICENSE.md ├── README.md ├── dapper-plus-sponsor.png └── entity-framework-extensions-major-sponsor.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/DesignTimeServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/DesignTimeServicesTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/EFCore.Sqlite.NodaTime.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/EFCore.Sqlite.NodaTime.Tests.csproj -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/InstantQueryTests.GetCurrentInstant_From_Instance.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/InstantQueryTests.GetCurrentInstant_From_Instance.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/InstantQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/InstantQueryTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Equal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Equal.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.GreaterThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.GreaterThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.LessThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.LessThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.Combination.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.Combination.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.PlusDays.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.PlusDays.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.PlusMonths.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.PlusMonths.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.PlusWeeks.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.PlusWeeks.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.PlusYears.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.PlusYears.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.ToDateOnly.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.ToDateOnly.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.ToDateTimeUnspecified.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Methods.ToDateTimeUnspecified.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.Day.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.Day.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.DayOfWeek.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.DayOfWeek.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.DayOfYear.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.DayOfYear.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.Month.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.Month.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.Year.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Properties.Year.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_Day.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_Day.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_DayOfWeek.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_DayOfWeek.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_DayOfYear.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_DayOfYear.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_Equal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_Equal.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_GreaterThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_GreaterThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_LessThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_LessThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_Month.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_Month.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_Year.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Select_Year.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Update.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.Update.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateQueryTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffHour.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffHour.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffMillisecond.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffMillisecond.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffMinute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffMinute.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffMonth.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffMonth.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffSecond.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffSecond.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffWeek.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffWeek.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffYear.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.DateDiffYear.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeDateDiffQueryTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Equal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Equal.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.GreaterThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.GreaterThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.LessThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.LessThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.Combination.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.Combination.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusDays.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusDays.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusHours.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusHours.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusMilliseconds.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusMilliseconds.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusMinutes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusMinutes.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusMonths.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusMonths.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusSeconds.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusSeconds.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusWeeks.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusWeeks.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusYears.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.PlusYears.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.ToDateTimeUnspecified.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Methods.ToDateTimeUnspecified.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Date.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Date.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Day.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Day.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.DayOfWeek.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.DayOfWeek.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.DayOfYear.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.DayOfYear.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Hour.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Hour.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Minute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Minute.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Month.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Month.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Second.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Second.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.TimeOfDay.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.TimeOfDay.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Year.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Properties.Year.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Date.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Date.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Day.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Day.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_DayOfWeek.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_DayOfWeek.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_DayOfYear.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_DayOfYear.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Equal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Equal.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_GreaterThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_GreaterThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Hour.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Hour.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_LessThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_LessThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Minute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Minute.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Month.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Month.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Second.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Second.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_TimeOfDay.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_TimeOfDay.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Year.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Select_Year.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Update.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.Update.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalDateTimeQueryTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Equal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Equal.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.GreaterThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.GreaterThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.LessThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.LessThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.Combination.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.Combination.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.PlusHours.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.PlusHours.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.PlusMilliseconds.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.PlusMilliseconds.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.PlusMinutes.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.PlusMinutes.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.PlusSeconds.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.PlusSeconds.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.ToTimeOnly.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Methods.ToTimeOnly.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Properties.Hour.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Properties.Hour.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Properties.Minute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Properties.Minute.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Properties.Second.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Properties.Second.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_Equal.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_Equal.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_GreaterThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_GreaterThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_Hour.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_Hour.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_LessThan.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_LessThan.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_Minute.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_Minute.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_Second.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Select_Second.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Update.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.Update.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/LocalTimeQueryTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/MethodQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/MethodQueryTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/MigrationTests.Migration_Generates_Correct_MigrationCode.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/MigrationTests.Migration_Generates_Correct_MigrationCode.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/MigrationTests.Migration_Generates_Correct_SnapshotCode.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/MigrationTests.Migration_Generates_Correct_SnapshotCode.verified.txt -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/MigrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/MigrationTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/NodaTimeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/NodaTimeContext.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/NodaTimeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/NodaTimeTypes.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/QueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/QueryTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/SqliteNodaTimeDbContextOptionsBuilderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/SqliteNodaTimeDbContextOptionsBuilderExtensionsTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/SqliteNodaTimeServiceCollectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/SqliteNodaTimeServiceCollectionExtensionsTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.Tests/SqliteNodaTimeTypeMappingSourcePluginTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.Tests/SqliteNodaTimeTypeMappingSourcePluginTests.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime.sln -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Constants.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Design/Internal/SqliteNodaTimeDesignTimeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Design/Internal/SqliteNodaTimeDesignTimeServices.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/EFCore.Sqlite.NodaTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/EFCore.Sqlite.NodaTime.csproj -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Extensions/NodaTimePatternExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Extensions/NodaTimePatternExtensions.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Extensions/SqliteNodaTimeDbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Extensions/SqliteNodaTimeDbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Extensions/SqliteNodaTimeDbFunctionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Extensions/SqliteNodaTimeDbFunctionsExtensions.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Extensions/SqliteNodaTimeServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Extensions/SqliteNodaTimeServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Extensions/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Extensions/Utilities.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Infrastructure/Internal/SqliteNodaTimeOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Infrastructure/Internal/SqliteNodaTimeOptionsExtension.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeDateDiffFunctionsTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeDateDiffFunctionsTranslator.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeMemberTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeMemberTranslator.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeMemberTranslatorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeMemberTranslatorPlugin.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeMethodCallTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeMethodCallTranslator.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeMethodCallTranslatorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Query/ExpressionTranslators/Internal/SqliteNodaTimeMethodCallTranslatorPlugin.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Query/Internal/SqliteNodaTimeEvaluatableExpressionFilterPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Query/Internal/SqliteNodaTimeEvaluatableExpressionFilterPlugin.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Scaffolding/Internal/SqliteNodaTimeCodeGeneratorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Scaffolding/Internal/SqliteNodaTimeCodeGeneratorPlugin.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Storage/Internal/SqliteInstantTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Storage/Internal/SqliteInstantTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Storage/Internal/SqliteLocalDateTimeTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Storage/Internal/SqliteLocalDateTimeTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Storage/Internal/SqliteLocalDateTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Storage/Internal/SqliteLocalDateTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Storage/Internal/SqliteLocalTimeTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Storage/Internal/SqliteLocalTimeTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Storage/Internal/SqliteNodaTimeTypeMappingSourcePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Storage/Internal/SqliteNodaTimeTypeMappingSourcePlugin.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Storage/Internal/SqlitePatterns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Storage/Internal/SqlitePatterns.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/Storage/Internal/SqliteTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/Storage/Internal/SqliteTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.Sqlite.NodaTime/build/netstandard2.0/EntityFrameworkCore.Sqlite.NodaTime.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/EFCore.Sqlite.NodaTime/build/netstandard2.0/EntityFrameworkCore.Sqlite.NodaTime.targets -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/README.md -------------------------------------------------------------------------------- /dapper-plus-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/dapper-plus-sponsor.png -------------------------------------------------------------------------------- /entity-framework-extensions-major-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khellang/EFCore.Sqlite.NodaTime/HEAD/entity-framework-extensions-major-sponsor.png --------------------------------------------------------------------------------