public MealPlanPrice GetMealPlanPrice(int MealPlanId, DateTime dateTime) { MealPlanPrice mealPlanPrice = TableNoTracking.First(e => e.StartDate <= dateTime && e.EndDate >= dateTime && e.MealPlanId == MealPlanId); return(mealPlanPrice); }