public void AddToAspNetProfiles(AspNetProfile aspNetProfile)
 {
     base.AddObject("AspNetProfiles", aspNetProfile);
 }
 public static AspNetProfile CreateAspNetProfile(global::System.Guid userId, string propertyNames, string propertyValuesString, byte[] propertyValuesBinary, global::System.DateTime lastUpdatedDate)
 {
     AspNetProfile aspNetProfile = new AspNetProfile();
     aspNetProfile.UserId = userId;
     aspNetProfile.PropertyNames = propertyNames;
     aspNetProfile.PropertyValuesString = propertyValuesString;
     aspNetProfile.PropertyValuesBinary = propertyValuesBinary;
     aspNetProfile.LastUpdatedDate = lastUpdatedDate;
     return aspNetProfile;
 }