Cómo agregar funcionalidad a los botones (siguiente anterior primero último) botones de navegación al campo de clave principal usando MVC

programación


==========Problema==========

No se pueden agregar funciones al Siguiente anterior último primero para crear una acción usando el repositorio

patrón basado en el campo EmployeeId

==========Ejemplo==========

ID de empleado: 5 como último registro

SI se carga la vista de acción creada, debe mostrar máx+1 para la identificación del empleado, lo que significa que mostrará 6
Si hace clic en el botón Siguiente, se convierte en 6

SI hace clic en el botón anterior, se convierte en 4 y obtiene otros datos relacionados como nombre, edad, etc.

SI hace clic en Último botón, se convierte en 5 y obtiene otros datos relacionados como nombre, edad, etc.

SI hace clic en FirstButton, se convierte en 1 y obtiene otros datos relacionados como nombre, edad, etc.

=======tecnología utilizada============

Trabajo en visual studio 2017 asp.net core 2.1 sql server 2012 usando patrón de repositorio genérico

Lo que he probado:

===========Employee Controller Have Create Action=====

public class EmployeesController : Controller
    {
        private readonly IEmployees _context;

        public EmployeesController(IEmployees context)
        {
            _context = context;
        }

        
        // GET: Employees/Create
        public IActionResult Create()
        {
How to call functions below
         //   var maxId =   maxid+1;
getNext()
getprevious()
getlast()
getfirst()
            return View();
        }
===============Generic Repository Pattern(required function I dont know======
 
 public class EFRepository<T> : IRepository<T> where T : class
    {
        protected TabDbContext _context { get; set; }
        public EFRepository(TabDbContext context)
        {
            _context = context;
        }
getNext(){
what implementation write
}
getprevious()
{
what implementation write
}
getlast()
{
what implementation write
}
getfirst()
{
what implementation write
}
public IQueryable<T> GetAll()
        {
            return _context.Set<T>();
        }

        public virtual async Task<ICollection<T>> GetAllAsyn()
        {

            return await _context.Set<T>().ToListAsync();
        }

        public virtual T Get(int id)
        {
            return _context.Set<T>().Find(id);
        }

        public virtual async Task<T> GetAsync(int id)
        {
            return await _context.Set<T>().FindAsync(id);
        }

       
        public virtual T Find(Expression<Func<T, bool>> match)
        {
            return _context.Set<T>().SingleOrDefault(match);
        }

        public virtual async Task<T> FindAsync(Expression<Func<T, bool>> match)
        {
            return await _context.Set<T>().SingleOrDefaultAsync(match);
        }

        public ICollection<T> FindAll(Expression<Func<T, bool>> match)
        {
            return _context.Set<T>().Where(match).ToList();
        }

        public async Task<ICollection<T>> FindAllAsync(Expression<Func<T, bool>> match)
        {
            return await _context.Set<T>().Where(match).ToListAsync();
        }

}
=====Buttons Navigation on Create View Of Employee Controller====
<div class="title_of_div">
    <button id="BtnFirst" style="display:inline">First</button>
    <button id="BtnNext" style="display:inline">Next</button>
    <button id="BtnPrevious" style="display: inline">Previous</button>
    <button id="BtnLast" style="display: inline">Last</button>
</div>
view create controlls
===========Create Action Get==========
 <form asp-action="Create">

            <div asp-validation-summary="ModelOnly" class="text-danger"></div>
            <div class="form-group">
                <label asp-for="EmployeeId" class="control-label"></label>
                <input asp-for="EmployeeId" class="form-control" />
                <span asp-validation-for="EmployeeId" class="text-danger"></span>
            </div>
            <div class="form-group">
                <label asp-for="BranchCode" class="control-label"></label>
                <input asp-for="BranchCode" class="form-control" />
                <span asp-validation-for="BranchCode" class="text-danger"></span>
            </div>
            <div class="form-group">
                <label asp-for="EmployeeName" class="control-label"></label>
                <input asp-for="EmployeeName" class="form-control" />
                <span asp-validation-for="EmployeeName" class="text-danger"></span>
            </div>
            
        </form>
    </div>
</div>
============Model related data=============
public class Employee
    {
        [Key]
        public int EmployeeId { get; set; }
        public int BranchCode { get; set; }
        public string EmployeeName { get; set; }
   
    }

Solución 1

1) “Crear” no requiere una identificación; la identificación es asignada por EF para cualquier IDENTIDAD / [Key] campo/atributo.

2) Siguiente: ..Donde( e => e.Id > 5 ).Orderby( e => e.Id ).FirstOrDefault()

3) Anterior: ..Donde( e => e.Id < 5 ).Orderby( e => e.Id ).LastOrDefault()

4) Primero: ..Orderby( e => e.Id ).FirstOrDefault()

5) Último: ..Orderby( e => e.Id ).LastOrDefault()

コメント

タイトルとURLをコピーしました