Commenting the external logins from login cshtml to work around a bug
https://github.com/aspnet/HttpAbstractions/issues/115 Also adding a work around for the EF issue.
This commit is contained in:
parent
c41407d7b7
commit
0c3cf30d2c
|
|
@ -94,14 +94,23 @@ namespace MusicStore.Models
|
||||||
|
|
||||||
public int GetCount()
|
public int GetCount()
|
||||||
{
|
{
|
||||||
|
int sum = 0;
|
||||||
//https://github.com/aspnet/EntityFramework/issues/557
|
//https://github.com/aspnet/EntityFramework/issues/557
|
||||||
// Get the count of each item in the cart and sum them up
|
// Get the count of each item in the cart and sum them up
|
||||||
int? count = (from cartItems in _db.CartItems
|
var cartItemCounts = (from cartItems in _db.CartItems
|
||||||
where cartItems.CartId == ShoppingCartId
|
where cartItems.CartId == ShoppingCartId
|
||||||
select (int?)cartItems.Count).Sum();
|
select (int?)cartItems.Count);
|
||||||
|
|
||||||
|
cartItemCounts.ForEachAsync(carItemCount =>
|
||||||
|
{
|
||||||
|
if (carItemCount.HasValue)
|
||||||
|
{
|
||||||
|
sum += carItemCount.Value;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Return 0 if all entries are null
|
// Return 0 if all entries are null
|
||||||
return count ?? 0;
|
return sum;
|
||||||
}
|
}
|
||||||
|
|
||||||
public decimal GetTotal()
|
public decimal GetTotal()
|
||||||
|
|
|
||||||
|
|
@ -52,11 +52,12 @@
|
||||||
}
|
}
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4">
|
@*https://github.com/aspnet/HttpAbstractions/issues/115*@
|
||||||
|
@*<div class="col-md-4">
|
||||||
<section id="socialLoginForm">
|
<section id="socialLoginForm">
|
||||||
@await Html.PartialAsync("_ExternalLoginsListPartial", new ExternalLoginListViewModel { ReturnUrl = ViewBag.ReturnUrl })
|
@await Html.PartialAsync("_ExternalLoginsListPartial", new ExternalLoginListViewModel { ReturnUrl = ViewBag.ReturnUrl })
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>*@
|
||||||
</div>
|
</div>
|
||||||
@section Scripts {
|
@section Scripts {
|
||||||
@*TODO : Until script helpers are available, adding script references manually*@
|
@*TODO : Until script helpers are available, adding script references manually*@
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue