基于两个类(ViewModel和Domain Model)显示自定义实体

时间:2014-01-28 18:15:25

标签: c# asp.net-mvc-4 entity-framework-5 infragistics ignite-ui

我正在使用asp.net mvc 4.0制作项目,使用实体框架和linq ... 所以我有两节课。 客户类:

namespace LicenciamentoMVC.Models
{
public class Cliente
{
    [Key]
    public int IDCliente { get; set; }

    public string Nome { get; set; }
    public string Morada { get; set; }
    public string CPostal { get; set; }
    public string Localidade { get; set; }
    public string Freguesia { get; set; }
    public string Conselho { get; set; }
    public string Distrito { get; set; }
    public string Pais { get; set; }
    public string Telefone { get; set; }
    public string Telemovel { get; set; }
    public string Fax { get; set; }
    public string Email { get; set; }
    public string Nif { get; set; }
    public string WWW { get; set; }
    public string Observacoes { get; set; }
    public int IDP { get; set; }
    public int IDU { get; set; }
    public DateTime TStamp { get; set; }
    public int Rem { get; set; }
    public String TipoCliente { get; set; }

}
public class ClienteModel
{
    private static Cliente entity;
    public static IQueryable<Cliente> GetListaClientes()
    {
        MvcApplication1Context db = new MvcApplication1Context();

        var customers = from c in db.Clientes
                        orderby c.IDCliente descending
                        where c.Rem==0
                        select c;

        return customers.AsQueryable<Cliente>();
    }
  }
}

这是我的Processo Class

  public class Processo
{
    [Key]
    public int IDProcesso { get; set; }
    public int IDCliente { get; set; }
    public DateTime DataInserido { get; set; }
    public string NumeroFactura { get; set; }
    public DateTime DataFactura { get; set; }
    public string Estado { get; set; }
    public int IDU { get; set; }
    public int Rem { get; set; }
    public DateTime TStamp { get; set; }

}

假设我想要查看Processo类中的IDprocesso和DataInserido,以及Cliente类中的Nome。

我的数据库由两个表Clientes和Processos组成。 我的dbContent类:

public class MvcApplication1Context:DbContext
{
    public MvcApplication1Context()
        : base("name=MvcApplication1Context")
    {
    }

    //protected override void OnModelCreating(DbModelBuilder modelBuilder)
    //{
    //    modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
    //}
    public DbSet<Cliente> Clientes { get; set; }
    public DbSet<Processo> Processos { get; set; }
 }

方法GetListClientes是一个iqueryable,因为我使用Igniteui组件,在这种情况下是igGrid,我跟着我在infragistics网站上找到的教程,如果有更好的方法,请告诉我..

回到主题.. 由于禁忌问题,我没有声明外键。 我应该创建一个包含我想要查看的字段的新类,还是有另一种方法。 如果我使用创建新类的方法来显示数据,我应该在该类中执行类似的操作:

public class ProcessoClienteModel
{
    private static ProcessoCliente entity;
    public static IQueryable<ProcessoCliente> GetListaProcessos()
    {
        MvcApplication1Context db = new MvcApplication1Context();

        var processos = from p in db.Processos
                        from c in db.Clientes
                        orderby p.IDProcesso descending
                        where p.IDCliente == c.IDCliente

                        where p.Rem == 0
                        select new { p.processoID,p.DataInserido,c.Nome} as  IQueryable<ClienteModel>;
        return processos;


        return processos.AsQueryable<ProcessoCliente>();
    }

}

或者有更好的方法来做到这一点...... 我正在通过互联网上的主题试图找到一种方法.. 谢谢你的帮助..

所以我一直试图找到一种方法,我试图做的是一个viewmodel类,在这个视图模型中我将有我想要显示的字段,Processo id,Data Inserido和名称cliente ..这个类将通过linq获取值到我的域类,在这种情况下processo和cliente ... 我正朝着正确的方向前进吗?

使用Bjorn Vdkerckhove给我的提示,谢谢,我已经做到了这一点.. 创建一个名为viewmodel的新文件夹,并在其中创建一个名为ProcessoCliente.cs的新类 这个类的代码:

namespace LicenciamentoMVC.ModelsView
{
public class ProcessoCliente
{
    public int IDProcesso { get; set; }
    public string NomeCliente { get; set; }
    public DateTime DataInserido { get; set; }
}
public class ProcessoModel
{
    private static ProcessoCliente entity;
    public static IQueryable<ProcessoCliente> GetListaProcessosClientes()
    {
        MvcApplication1Context db = new MvcApplication1Context();

        var processos =  (from p in db.Processos
                         join c in db.Clientes on p.IDCliente equals c.IDCliente
                          orderby p.IDProcesso descending
                         select new ProcessoCliente { IDProcesso = p.IDProcesso, NomeCliente = c.Nome, DataInserido = p.DataInserido});


        return processos.AsQueryable<ProcessoCliente>();
    }

}
}

然后我在控制器Processo的索引操作上创建视图

@model IEnumerable<LicenciamentoMVC.ModelsView.ProcessoCliente>
@using Infragistics.Web.Mvc

@{
ViewBag.Title = "Index";
}

@* render of ignite ui grid *@
@( Html.Infragistics().Grid<LicenciamentoMVC.ModelsView.ProcessoCliente>()

    .Caption("Processos")
    .ID("grid1")
    .DefaultColumnWidth("200px")
    .PrimaryKey("IDProcesso")
    .Columns(column =>
    {

        column.For(x =>x.NomeCliente).DataType("string").HeaderText("Nome do Cliente").Width("60%");
        column.For(x => x.DataInserido).DataType("DateTine").HeaderText("Data de Criação do Processo").Width("40%");

        column.For(x => x.IDProcesso).DataType("int").Width("0%");




    })
    .Features(features =>
    {
        features.Paging().PageSize(20).PrevPageLabelText("Previous").NextPageLabelText("NEXT");
        features.Sorting().Mode(SortingMode.Single).ColumnSettings(settings =>
        {
            settings.ColumnSetting().ColumnKey("NomeCliente").AllowSorting(true);

        });
        features.Selection().MultipleSelection(false).Mode(SelectionMode.Row);
        features.Filtering().Mode(FilterMode.Simple);
        features.Updating()
               .EnableAddRow(false)
               .EnableDeleteRow(true)
               .EditMode(GridEditMode.None);




    })
    .DataSourceUrl(Url.Action("ListarProcessos"))    
    .UpdateUrl(Url.Action("DeleteProcessos"))        
   .AutofitLastColumn(false)
   .Width("100%")
    .AutoGenerateColumns(false)
    .DataBind()
    .Render()
)   

我在ProcessoController中有这个动作来加载网格..

    [GridDataSourceAction]
    public ActionResult ListarProcessos()
    {
        return View(LicenciamentoMVC.ModelsView.ProcessoModel.GetListaProcessosClientes());
    }

它有效,但我想知道这是否是正确的方法......或者有一种更好的方法可以做到这一点..

再次感谢,..

1 个答案:

答案 0 :(得分:0)

如果我理解正确,你在对象之间没有任何真正的关系。这一切都取决于您需要显示多少数据。

如果您想显示相关数据,可以使用razor在您的视图中执行此操作:

@foreach(var client in Model.Clientes)
{
 <h1>@client.Name</h1>
<ul>
<li>Model.Processo.FirstOrDefault(f=> f.IDCliente == client.IDCliente).DataInserido.toString("dd-MM-yyyy")</li>
<li>.... other properties...</li>
</ul>
}