Hoping someone has an idea on how to use a type from my linq-to-sql datacontext as the type attribute in my web.config providers property.
<profile enabled="true">
<properties>
<add name="UserSetting" allowAnonymous="true" type="MyApp.DataAccess.UserSetting" />
</properties>
</profile>
So, in this case, UserSetting is a table in my database, which I've mapped using Linq to Sql. Alternatively, in the past I've specified a class which I've expressly written in my application and it's worked fine. I'd rather have it dynamically linked though.
Hopefully this makes sense - thanks!