- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
场景
我正在编写一个系统来进行考试。考试负责人(Invigilator)开始考试,此时允许参加考试的人(Candidates)开始考试。如果考生试图提前开始,他们会收到一条消息,告诉他们等待监考员。记录两个开始时间(考试开始和考生开始)。
当监考员开始考试时,我们设置 exam start time
对于考试,我们然后找出每个考生被允许参加考试的时间,并将其添加到 exam start time
中。 ,从而给了我们我所说的 scheduled finish
.
public void SetExamStart(Exam exam, List<ExamCandidate> examCandidates)
{
DateTime startTime = _timeService.GetCurrentDateTime();
exam.ExamStarted = startTime;
_work.ExamRepository.Update(exam);
examCandidates.ForEach(ec =>
{
ExamPaper examPaper = ec.ExamPaper;
if (!examPaper.ExamDuration.HasValue)
{
return;
}
Int32 examPaperDuration = examPaper.ExamDuration.Value;
DateTime scheduledFinish = startTime.AddMinutes(examPaperDuration);
ec.ScheduledFinish = scheduledFinish;
_work.ExamCandidateRepository.Update(ec);
});
}
对存储库的调用在同一个事务中。 ConnectionService
是依赖注入(inject)到版本库,版本库注入(inject)UnitOfWork
(_work),均基于每个网络请求。
public virtual void Update(TEntity entity)
{
IDbConnection connection = ConnectionService.Connection;
try
{
connection.Execute(_queryGenerator.UpdateQuery, entity, ConnectionService.Transaction);
}
catch (SqlException ex)
{
throw new DataAccessException("An error occured on query execution", ex);
}
}
当候选人试图开始时:
public void StartCandidateExam(Guid examCandidateId)
{
ExamCandidate examCandidate = _work.ExamCandidateRepository.Get(examCandidateId);
Exam exam = examCandidate.Exam;
if (!exam.ExamStarted.HasValue) {
throw new ExamNotStartedException("Please wait for the invigilator to start the exam");
}
_candidateExamService.StartExam(examCandidate);
_work.SaveChanges();
}
public void StartExam(ExamCandidate examCandidate)
{
DateTime currentTime = _timeService.GetCurrentDateTime();
examCandidate.Started = currentTime;
_work.ExamCandidateRepository.Update(examCandidate);
}
在整个项目中,我使用 Lazy<T>
在某些实体上。如 ExamPaper
ExamCandidate
上的属性(property)实体。如下所示:
public class ExamCandidate
{
//other properties
public DateTime? ScheduledFinish { get; set; }
public int ExamPaperID { get; set; }
public LazyEntity<ExamPaper> ExamPaper { get; set; }
}
public class LazyEntity<T> : Lazy<T>
{
public LazyEntity(Func<T> func) : base(func) {}
public static implicit operator T(LazyEntity<T> lazy)
{
return lazy.Value;
}
}
// setting the lazy in the exam candidate repository
examCandidate.ExamPaper = new LazyEntity<ExamPaper>(() =>
{
return Work.ExamPaperRepository.Get(examCandidate.ExamPaperID);
});
问题:
考生在监考员之后非常开始考试,这导致他们的 ScheduledFinish 没有被设置。这对于几秒钟后开始的其他候选人来说效果很好。
这是日志:
+------------------------+-------------------------+
| Log Type | Log Date |
+------------------------+-------------------------+
| Exam Started | 2018-03-08 15:00:58.370 |
| Candidate Exam Started | 2018-03-08 15:00:58.387 |
+------------------------+-------------------------+
+-------------------------+-------------------------+--------+-------------+
| Started | ScheduledFinish | ExamID | ExamPaperID |
+-------------------------+-------------------------+--------+-------------+
| 2018-03-08 15:00:58.387 | NULL | 42 | 34 |
| 2018-03-08 15:01:01.727 | 2018-03-08 15:30:58.370 | 42 | 34 |
| 2018-03-08 15:01:02.507 | 2018-03-08 15:30:58.370 | 42 | 56 |
| 2018-03-08 15:01:02.770 | 2018-03-08 15:30:58.370 | 42 | 56 |
| 2018-03-08 15:01:02.960 | 2018-03-08 15:30:58.370 | 42 | 34 |
+-------------------------+-------------------------+--------+-------------+
我看不出这是什么原因,考试的开始和每个预定结束时间的设置是在同一个操作中完成的,在同一个事务下,并且在这发生之前考生不能开始。
有什么我想念的吗?
--编辑澄清一下,这个问题在不到一年的时间里发生了两次。两次在监考员开始后考生很快就开始了。
最佳答案
我认为您的问题是您首先在 SetExamStart 中设置 exam.ExamStarted = startTime,而不是为考生设置 ScheduledFinish。可以调用 StartCandidateExam,因为 ExamStarted.HasValue 为真,但您的 ExamCandidate ScheduledFinish 可以为空。
将您的 SetExamStart 更改为此以确保设置了 ScheduledFinish:
public void SetExamStart(Exam exam, List<ExamCandidate> examCandidates)
{
DateTime startTime = _timeService.GetCurrentDateTime();
examCandidates.ForEach(ec =>
{
ExamPaper examPaper = ec.ExamPaper;
if (!examPaper.ExamDuration.HasValue)
{
return;
}
Int32 examPaperDuration = examPaper.ExamDuration.Value;
DateTime scheduledFinish = startTime.AddMinutes(examPaperDuration);
ec.ScheduledFinish = scheduledFinish;
_work.ExamCandidateRepository.Update(ec);
});
exam.ExamStarted = startTime;
_work.ExamRepository.Update(exam);
}
您可能必须更改此逻辑
if (!examPaper.ExamDuration.HasValue)
...
也是。
关于c# - List<T>.ForEach(Action) 和 Sql 事务的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49194161/
当包裹在 EmberJS Controller 的 actions 中时,如何从另一个 Action 调用一个 Action ? 使用现已弃用的方式定义操作的原始代码: //app.js App.In
我有一个 Action (一个yaml文件),用于将docker镜像部署到Google Cloud Run。 我希望收到通知构建和推送结果的Slack或电子邮件。 构建操作完成后,如何触发消息操作?
Selenium 的 actions 类中存在的 tick(Action action) 和 tick(Interaction...actions) 方法的用途是什么? 是否与点击任何 webElem
简短的背景故事 我们目前为数百名用户提供对话操作。我们在过去三年中为我们的一位客户开发了这个 Action 作为“工作”。正如我们最近发现的那样,我们会受到对话行为的影响。 当然,我们现在正在研究如何
考虑系统用户可以并发方式执行两个操作,第一个操作 (A1) 仅对用户的订单执行,第二个操作 (A2) 包括在执行时执行 (A1),如下面的使用所述-案例图..((考虑A1完全执行U1,A2完全执行U2
我正在为 android 中的 ActionBar 而苦苦挣扎。 这是我的问题:我的操作项没有显示在操作栏中,而是堆叠在操作溢出中,无论我做什么.. 我花了一天的时间寻找解决方案,但我似乎找不到缺少的
我正在构建一个工作流,其中一个操作为工作流中的一个步骤提供条件。我该如何使用这个值? 该操作的值为空,因此计算结果为 false,并且从未部署过任何内容... jobs: build: s
鉴于您有一些全局 View (例如,显示加载屏幕),您可能希望在许多情况下发生这种情况,为该行为创建一个 Action 创建者/ Action 对还是为相关 Action 创建 reducer 更合适
我有一个使用 DialogFlow 构建的 Actions on Google 代理,其中包含多个操作(例如 actions.intent.MAIN 和 get_day_of_week)。 当我在 3
是否可以从我的 action.yml 文件中引用另一个 GitHub 操作? 请注意,我在这里谈论的是操作,而不是工作流程。我知道这可以通过工作流来完成,但是操作可以引用其他操作吗? 最佳答案 答案似
在 Vuex 操作中,我们有以下实现。 async actionA({ commit, dispatch }) { const data = this.$axios.$get(`/apiUrl`)
我正在将我的应用程序服务器从 Jboss 4.2 迁移到 7.1。我在 Struts 配置中收到以下错误。 struts.xml 中定义的 Action 被调用,而 Action 包中的操作未被调用。
我向 ActLand 发送请求,然后 intercept(),如果没有登录则重定向到 Login.jsp。 struts.xml:
我有一个 Action 创建器,它接受一个 id 和一个回调函数。它向服务器发送请求以执行某些操作并返回一个虚拟操作。我在这里想做的就是调用回调函数并退出,因为该虚拟操作对我来说没有用处,例如喜欢帖子
我已经使用 Html.Action 方法调用了另一个 View 。当用户单击操作链接时,我想在 subview 内使用参数调用相同的操作。 当我写这段代码时,我得到了这个错误信息: Html.Acti
是 public event Action delt = () => { Console.WriteLine("Information"); }; 的重载版本 Action delg = (a, b)
countresultsfrom.addActionListener(new ActionListener() { public void actionPerforme
我刚刚看到一个 brand-new video在 Rx 框架上,一个特别的签名引起了我的注意: Scheduler.schedule(this IScheduler, Action) 在 23:55,
我创建了一个在我的开发者帐户中完美运行的 DialogFlow 应用程序。 但我需要以另一个用户的身份对其进行测试,因此在我的 Google Action 模拟器中,我添加了另一个测试帐户作为项目的所
我正在尝试实现消息存储拦截器以在我的 JSp 上显示 ActionMessage,但无法访问 ActionMessage。有人可以提供一个链接如何实现消息存储拦截器吗? 最佳答案 这是我的一个应用程序
我是一名优秀的程序员,十分优秀!