My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
58
59
60
61
62
63
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.WindowsAzure.StorageClient;


namespace Pesta.DataAccess.Azure
{
public class PersonRow : TableServiceEntity
{
public PersonRow()
{

}
public PersonRow(string partitionKey, string rowKey)
: base(partitionKey, rowKey)
{
}

public string id
{
get { return PartitionKey; }
set { }
}
public string email { get; set; }
public string email_hash { get; set; }
public string password { get; set; }
public string about_me { get; set; }
public int? age { get; set; }
public string children { get; set; }
public long? date_of_birth { get; set; }
public string drinker { get; set; }
public string ethnicity { get; set; }
public string fashion { get; set; }
public long fb_userid { get; set; }
public string gender { get; set; }
public string gfc_id { get; set; }
public string open_id { get; set; }
public string happiest_when { get; set; }
public string humor { get; set; }
public string job_interests { get; set; }
public string living_arrangement { get; set; }
public int? looking_for { get; set; }
public string nickname { get; set; }
public string pets { get; set; }
public string political_views { get; set; }
public string profile_song { get; set; }
public string profile_url { get; set; }
public string profile_video { get; set; }
public string relationship_status { get; set; }
public string religion { get; set; }
public string romance { get; set; }
public string scared_of { get; set; }
public string sexual_orientation { get; set; }
public string smoker { get; set; }
public string status { get; set; }
public string thumbnail_url { get; set; }
public long? time_zone { get; set; }
public string first_name { get; set; }
public string last_name { get; set; }
}
}

Change log

r164 by seanlinmt on Sep 16, 2010   Diff
- updated solution files to VS2010 and
MVC2
- Windows Azure support is broken with
latest Azure SDK
Go to: 
Project members, sign in to write a code review

Older revisions

r154 by seanlinmt on Sep 4, 2009   Diff
- added Azure Table Storage support
- rearrange things a bit
All revisions of this file

File info

Size: 2252 bytes, 63 lines
Powered by Google Project Hosting