henkmollema / Dapper-FluentMap

Provides a simple API to fluently map POCO properties to database columns when using Dapper.
MIT License
427 stars 86 forks source link

Dapper.FluentMap v2 #62

Closed henkmollema closed 1 year ago

henkmollema commented 7 years ago

v2 of Dapper.FluentMap will bring several new features and bugfixes while maintaining a simple API.

Improved configuration

Remove use of ReflectedType and DeclaringType

ReflectedType is inconsistent and is not available on .NET Standard 1.3. Providing different implementations according to the target framework seems like a bad idea. The best way to solve this is to not use ReflectedType at all and get a hold on a reference to the object.

Related issues:

Incorporate more mappings into Dommel

Dommel does not use all available mappings provided by Dapper.FluentMap. Make use of the extensibility points of Dommel and use the mapping configuration of Dapper.FluentMap.

Related issues:

Todo

Preview versions


Any more suggestions are welcome! 🎉

nicolastakashi commented 7 years ago

I opened a one-to-many mapping issue #63 that I think would be great if we had it available in this next release.

henkmollema commented 6 years ago

Dapper.FluentMap 2.0.0-beta1 just shipped along with Dapper.FluentMap.Dommel 2.0.0-beta1.

henkmollema commented 1 year ago

I'm archiving this repository as I'm not using this library myself anymore and have no time maintaining it. Thanks for using it.