//Transaction trans = new Transaction System.Data.IsolationLevel.ReadCommitted, "EmailUser");
adapter.StartTransaction(System.Data.IsolationLevel.ReadCommitted, "EmailUser");
EmailEntity e = new EmailEntity();
e.EmailId = EmailIdUser;
e.FromPersonId = SupportId;
e.FromDisplayName = SupportName;
e.FromEmailAddress = SupportEmail;
e.Subject = this._Subject;
e.Body = this._Body;
e.ApplicationName = "";
//trans.Add( e );
//e.Save();
Does this line of code replace 2 lines of code above it
adapter.SaveEntity(e);
or do you have to add to trans and then save(if so what would the line of code be?)