GitXplorerGitXplorer
m

Dapper-NodaTime

public
26 stars
16 forks
9 issues

Commits

List of commits on branch master.
Unverified
20473fecbfaf17e3730ecb632ac2970345f537bb

Fix typo in package id

mmattjohnsonpint committed 7 years ago
Unverified
14595e3b0f66a6084585f6000ef95daf4d27b6ad

Run tests serially (in the same collection)

mmattjohnsonpint committed 7 years ago
Unverified
3f103d5e8e81701bc48783dfb4b21208e9206254

Misc Cleanup

mmattjohnsonpint committed 7 years ago
Unverified
43af55ee8905ba822415e8f9d65aa0914c877d8f

Rework for .net standard

mmattjohnsonpint committed 7 years ago
Unverified
12344960f0908a033a03d5a0d668d6c18e2b308c

Update README.md

mmattjohnsonpint committed 8 years ago
Unverified
0434ad1e50773383326c83b497272ad533dd4d92

update readme

mmattjohnsonpint committed 10 years ago

README

The README file for this repository.

Dapper-NodaTime NuGet Version

Noda Time support for Dapper

PM> Install-Package Dapper-NodaTime

In your project startup sequence somewhere, call:

DapperNodaTimeSetup.Register();

That registers all of the type handlers. Alternatively, you can register each type handler separately if you wish. For example:

SqlMapper.AddTypeHandler(LocalDateTimeHandler.Default);

Work in progress. Currently supports the following types:

  • Instant
  • LocalDateTime
  • LocalDate
  • LocalTime
  • OffsetDateTime

Does not yet support:

  • Duration
  • Period
  • Offset
  • ZonedDateTime
  • DateTimeZone

See also: https://github.com/StackExchange/dapper-dot-net/issues/198