Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   adding data to ASPNETDB.MDF (http://www.velocityreviews.com/forums/t614755-adding-data-to-aspnetdb-mdf.html)

Seb 05-14-2008 08:15 AM

adding data to ASPNETDB.MDF
 
As of now I have added a few pieces of data to my profile through
web.config. More specifically

<profile enabled="true">
<properties>
<add name="Height" type="Int16"/>
<add name="BirthDate" type="System.DateTime"/>
</properties>
</profile>

How would I go about retrieving all users who are above 180 cm or all
the users who have birthday today?
I'm unsure about how to work with this on a global level and not just
for an individual user.
Is there a way to have this data magically appear as columns in my
aspnet_User table? because that way it would be simple enough.

Another issue is when I want relational data such as weight associated
with a date? For the sake of normalization I have now manually added a
new table containing user id, weight and data columns. But is this
best practice? And what are the alternatives...


best regards


All times are GMT. The time now is 12:14 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57