Hello,
Q1
Book suggests that before we register new SqlProfileProvider, we should remove any existing profile providers using <clear>
element. But:
A) why must we use <clear>
instead of <remove>
?
B) I assume that root web.config or machine.config don’t register (by default) any profile provider, and thus using <clear>
element is not necessary?
Q2 I assume reason why each profile property doesn’t have a corresponding column in a database table ( instead all properties are stored into a single field ) is due to the fact each time we would add and remove profile properties, we would also need to change table schema?
thanx