I am currently using MVC4 and entity framework model first. I was wondering how I am supposed to associate the asp.net membership provider tables with entity framework models.
I tried adding membership provider tables into my EF database. But when I make association between UserProfile table from asp.net membership provider and one of my table, another UserProfile table is automatically created and nothing is stored in the original UserProfile table.
Am I supposed to not make any associations between these two and just join table together to get user related information? Is there a work around? Or am I doing it totally wrong?
Thank you!