Exemplo n.º 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);
        }