Hello everyone I'm working on a ASP.NET MVC project with PostgreSQL as db and I'm wondering is there any way to combine AR with ASP.NET Identity?
As far as I found out people are suggesting an alternative with NHibernate ASP.NET Identity. I found this guide <https://github.com/milesibastos/NHibernate.AspNet.Identity> and everything went well until the last part with the session. var factory = configuration.BuildSessionFactory(); var session = factory.OpenSession(); var userManager = new UserManager<ApplicationUser>( new UserStore<ApplicationUser>(*session*); I've been trying to find a way through ActiveRecordMediator to get to the session. I'm open to any suggestions, if you have any ideas on how to manage my problem please do so. With kind regards -- You received this message because you are subscribed to the Google Groups "Castle Project Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/castle-project-users. For more options, visit https://groups.google.com/d/optout.
