Пример #1
0
        public void Insert(Guid UserId, string PropertyNames, string PropertyValuesString, byte[] PropertyValuesBinary, DateTime LastUpdatedDate)
        {
            AspnetProfile item = new AspnetProfile();

            item.UserId = UserId;

            item.PropertyNames = PropertyNames;

            item.PropertyValuesString = PropertyValuesString;

            item.PropertyValuesBinary = PropertyValuesBinary;

            item.LastUpdatedDate = LastUpdatedDate;


            item.Save(UserName);
        }
Пример #2
0
 public bool Destroy(object UserId)
 {
     return(AspnetProfile.Destroy(UserId) == 1);
 }
Пример #3
0
 public bool Delete(object UserId)
 {
     return(AspnetProfile.Delete(UserId) == 1);
 }