Decoupling Microsoft.AspNet.Identity.*

前端 未结 3 2003
粉色の甜心
粉色の甜心 2020-12-30 09:37

I am working in Visual Studio 2013 RC and am testing Forms Authentication using new Microsoft.AspNet.Identity.* packages.

I would to integrate these con

3条回答
  •  醉梦人生
    2020-12-30 09:45

    Yes this is a fully supported scenario, basically you will want to use exclude using the Microsoft.AspNet.Identity.EntityFramework dll which has the default EF implementation, but you should be able to reuse the Manager classes and just implement your own custom Stores using your own POCOs which the manager will use just fine via the interface. For RTM its been streamlined and simplified a bit more, I believe the RC version was not quite as streamlined yet.

    Updated You can get early access to the RTM bits here: MyGet

提交回复
热议问题