Hey there, I'开发者_如何学Cve started to play around with Fluent NHibernate and now I want to could do something like IDbSet<T>
like I could in EF Code First.. However I cant find any equivalent interface?
Thanks in adavance!
In NHibernate you operate with entities through the ISession
interface (reference docs with example). You may wrap the session in a repository if you want (example: Sharp Architecture repository)
精彩评论