db context hoes back to lib assembly...

This commit is contained in:
Paul Schneider 2018-06-11 13:27:12 +02:00
commit fa20ed0590
10 changed files with 3518 additions and 18 deletions

View file

@ -29,12 +29,6 @@
<input asp-for="Branch" class ="form-control"></input>
</div>
</div>
<div class="form-group">
<label asp-for="OwnerId" class="col-md-2 control-label"></label>
<div class="col-md-10">
<select asp-for="OwnerId" class ="form-control"></select>
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />

View file

@ -11,15 +11,19 @@
</p>
<table class="table">
<tr>
<th></th>
<th>Chemin</th>
<th/>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.ActionLink("Edit", "Edit", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
@Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
@item.Path
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.Path }) |
@Html.ActionLink("Details", "Details", new { id=item.Path }) |
@Html.ActionLink("Delete", "Delete", new { id=item.Path })
</td>
</tr>
}