OdeToCode / Memflex

Brainstorming membership ideas
MIT License
71 stars 21 forks source link

NHibernate provider #23

Open nickwlee opened 11 years ago

nickwlee commented 11 years ago

Anyone using NHibernate that want to use Memflex?

I'm using NHibernate and want to use memflex, if anyone is working on this provider for memflex,please shout I'd like to help it along, or get it started.

OdeToCode commented 11 years ago

Hi Nick:

No current plans, but I'd be glad to help you out if you wanted to get started earlier than I would. :)

nickwlee commented 11 years ago

Thats great news - It will be my first contribution to O/S. :-)

Any pointers to get me going would be great, It will be a slow burner for the next few weeks but I hope to get going on it v. soon.

OdeToCode commented 11 years ago

Hey Nick:

If you need help on getting started from a Git perspective, what you'll want to do is fork the repository into your own repository and start making changes there. Here is a doc: https://help.github.com/articles/using-pull-requests (sorry if you already know this stuff).

As for the app itself, what I'd suggest from a high level persepctive is taking the LogMeIn sample and removing the EF references, then trying to get everything working using Nhib (with the Nhib stuff being in it's own class library, like the EF stuff is now). The app itself should be able to work with NH just by changing things around in the IoC configuration . Let me know if you are looking for more details on these steps and I'll do my best to help out. I'm thinking the NH implementation will look much like the EF implementation since they both support IQueryable now, but it's been some time since I've worked with NH and I'm sure there are new things I don't know about.

nickwlee commented 11 years ago

That level of detail is perfect, thank you.