Esempio n. 1
0
        public LOG_ACTIONS GetRowById(string id)
        {
            LOG_ACTIONS result = null;

            using (var dbcontext = new MailLogEntities())
            {
                result = (from p in dbcontext.LOG_ACTIONS
                          where p.LOG_UID == id
                          select p).FirstOrDefault();
            }
            return(result);
        }
Esempio n. 2
0
 public bool Update(LOG_ACTIONS entity)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 public LOG_ACTIONS Add(LOG_ACTIONS entity)
 {
     throw new NotImplementedException();
 }