Beispiel #1
0
        public LOG_APP_ERRORS GetRowById(string id)
        {
            LOG_APP_ERRORS result = null;

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