Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i dont get relationship column my index page #39

Open
sak1065 opened this issue Apr 4, 2020 · 1 comment
Open

i dont get relationship column my index page #39

sak1065 opened this issue Apr 4, 2020 · 1 comment

Comments

@sak1065
Copy link

sak1065 commented Apr 4, 2020

i am using .net core 3.1 . paging is work fine but my index pages dont get relation table value ?
I wonder what's missing ?

//**
public partial class Malzeme
{
public Malzeme()
{
TalepMalzeme = new HashSet();
}

    [Key]
    [Column("Id")]
    public Guid Id { get; set; }

    [DisplayName("Birim")]
    [Column("Malzemebirimid")]
    public Guid Malzemebirimid { get; set; }

    [DisplayName("Başlık")]
    [StringLength(100, ErrorMessage = "100 karakteri geçemez!")]
    [Required(ErrorMessage = "Zorunlu alan!")]
    public string Baslik { get; set; }

    [DisplayName("Tanım")]
    [StringLength(100, ErrorMessage = "100 karakteri geçemez!")]
    public string Tanim { get; set; }
    public bool? Status { get; set; }


    [ForeignKey("Malzemebirimid")]
    [InverseProperty("Malzemes")]
    [DisplayName("Birim")]
    public virtual KeyValue Malzemebirim { get; set; }
    public virtual ICollection<TalepMalzeme> TalepMalzeme { get; set; }
}

public partial class KeyValue
{
    public KeyValue()
    {
        Users = new HashSet<Users>();
        Malzeme = new HashSet<Malzeme>();
        TalepOnay = new HashSet<TalepOnay>();
    }



    [Key]
    [Column("Id")]
    public Guid Id { get; set; }

    [DisplayName("Değer")]
    [StringLength(100, ErrorMessage = "100 karakteri geçemez!")]
    [Required(ErrorMessage = "Zorunlu alan!")]
    public string Value { get; set; }


    [DisplayName("Kod")]
    [Required(ErrorMessage = "Zorunlu alan!")]
    public string Kod { get; set; }

    [DisplayName("Tip")]

    [Required(ErrorMessage = "Zorunlu alan!")]
    public int? Tip { get; set; }
    public bool? Status { get; set; }

    public virtual ICollection<Users> Users { get; set; }

    [InverseProperty("KeyValue")]
    public virtual ICollection<Malzeme> Malzeme { get; set; }

    public virtual ICollection<TalepOnay> TalepOnay { get; set; }
}

index.cshtml

@using satinalma.Paging
@model PagingList

@{
ViewData["Title"] = "Index";
}

Index

Create New

    <div class="form-group">
        <label for="Baslik" class="control-label"></label>
        <input name="Baslik" class="form-control" value='@Model.RouteValue["Baslik"]'/>
    </div>

    <div class="form-group">
        <input type="submit" value="Listele" class="btn btn-primary" />
    </div>
@foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.Baslik) @Html.DisplayNameFor(model => model.Tanim) @Html.DisplayNameFor(model => model.Malzemebirim) Olaylar
@Html.DisplayFor(modelItem => item.Baslik) @Html.DisplayFor(modelItem => item.Tanim) @Html.DisplayFor(modelItem => item.Malzemebirim.Value) Düzenle | Sil
@emresekeroglu
Copy link

Merhaba, ilişkili tablodaki veriyi Reflectionit ile çekebilmek için yaklaşık 2 hafrta uğraştım en sonra şu şekilde çözdüm hala işinize yarar mı bilemiyorum. Faydalı olması dileğiyle;

listeleme yaptığınız method içinde;

`
//bu şekilde ana tablodan diğerine IEnumerable verileri çekin sonrasında html tarafında
//@Html.DisplayFor(modelItem => user.Departmans.Name) bu şekilde gösterebilirsiniz.
IEnumerable departmen = userManager.Users.Select(i => i.Departmans).ToList();

        var item = userManager.Users.AsNoTracking().AsQueryable();

        if (!string.IsNullOrWhiteSpace(filter))
        {
            item = item.Where(p => p.UserName.ToLower().Contains(filter.ToLower()));
        }
       
        var model = await PagingList.CreateAsync(item, satir, page, sortExpression, "UserName");

        model.RouteValue = new RouteValueDictionary
        {
            {"filter", filter}
        };

        return View(model);`

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants