GitXplorerGitXplorer
m

Dapper-NodaTime

public
26 stars
16 forks
9 issues

Commits

List of commits on branch master.
Unverified
ae8be27d5960668a3eeddca204c29243448044a2

update readme

mmattjohnsonpint committed 10 years ago
Unverified
d5a3df46570dfe0352aec8fe5f67f647b5437bd7

update readme

mmattjohnsonpint committed 10 years ago
Unverified
956a3a91e288b39d0fad16415e12037a8767d7e7

update readme

mmattjohnsonpint committed 10 years ago
Unverified
f76ade2800654529c73728fa6f09cbf239aa96d4

Adding nuspec

mmattjohnsonpint committed 10 years ago
Unverified
1ebc790b0e784f2da14778c6d3bcc37408b3e5f0

Initial commit

mmattjohnsonpint committed 10 years ago
Unverified
f63b928e51646e2583f684a61a58debf665e3e5c

Initial commit

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