Is there a place to look at this now?
I'm trying to update from 2.16.3 to 3.0.0 since it's seemingly close to release and things that used to be straightforward, e.g.. Map(m => m.Created).TypeConverterOption(DateTimeStyles.AdjustToUniversal).Name("createdAt");
no longer work, because there have been significant changes. Is there beta documentation somewhere? I've been digging through the code to try to figure out the changes but if there's rough 3.0 documentation somewhere that'd be amazing. No pressure
There isn't yet. If you pull down the gh-pages
branch you can run it locally. You'll need to install node.js. Then you can just run.
npm install
npm start
and navigate to http://localhost:3000
I'm not super far with the documentation yet though, unfortunately. I can answer any specific questions you have though.
In your example. TypeConverterOption
is now a property with a bunch of methods on it. This allowed me to add more things and not have to try to make the signature different for each thing that needed to be added.
I forgot, you'll need to run webpack also.
```
npm install
webpack --config webpack.config.vendor.js
webpack
npm start
Thanks Josh.