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); }
public bool Update(LOG_APP_ERRORS entity) { throw new NotImplementedException(); }
public LOG_APP_ERRORS Add(LOG_APP_ERRORS entity) { throw new NotImplementedException(); }