本文共 3525 字,大约阅读时间需要 11 分钟。
现在,ASP.NET MVC 6 支持注入类到视图中,和VC类不同的是,对类是公开的、非嵌套或非抽象并没有限制。在这个例子中,我们创建了一个简单的类,用于统计代办事件、已完成事件和平均优先级的服务。
StatisticsService 类代码设计如下:
using System.Linq;
using System.Threading.Tasks;
using TodoList.Models;
namespace TodoList.Services
{
public class StatisticsService
{
private readonly ApplicationDbContext db;
public StatisticsService(ApplicationDbContext context)
{
db = context;
}
public async Task GetCount()
{
return await Task.FromResult(db.TodoItems.Count());
}
public async Task GetCompletedCount()
{
return await Task.FromResult(
db.TodoItems.Count(x => x.IsDone == true));
}
public async TaskGetAveragePriority()
{
return await Task.FromResult(
db.TodoItems.Average(x =>
(double?)x.Priority) ?? 0.0);
}
}
}
@inject TodoList.Services.StatisticsService Statistics
添加标记调用 StatisticsService:
@Html.ActionLink("Create New Todo", "Create", "Todo")
@await Component.InvokeAsync("PriorityList", 4, true)
Stats
以下是该文件的完整代码:
@inject TodoList.Services.StatisticsService Statistics
@{
ViewBag.Title = "Home Page";
}
ASP.NET vNext
@if (Model.Count == 0)
{
No Todo Items
}
else
{
TODO
@foreach (var todo in Model)
{
@todo.Title
@Html.ActionLink("Details", "Details", "Todo", new { id = todo.Id }) |
@Html.ActionLink("Edit", "Edit", "Todo", new { id = todo.Id }) |
@Html.ActionLink("Delete", "Delete", "Todo", new { id = todo.Id })
}
}
@Html.ActionLink("Create New Todo", "Create", "Todo")
@await Component.InvokeAsync("PriorityList", 4, true)
Stats
// This method gets called by the runtime.
public void ConfigureServices(IServiceCollection services)
{
// Add EF services to the services container.
services.AddEntityFramework(Configuration)
.AddSqlServer()
.AddDbContext();
// Add Identity services to the services container.
services.AddDefaultIdentity(Configuration);
// Add MVC services to the services container.
services.AddMvc();
services.AddTransient();
}
以下是效果图:
发布应用到公有云,你需要申请 Microsoft Azure 帐号,如果没有,可以通过以下链接注册: 或 .
数据库服务器是一个宝贵的资源。最好使用现有服务器进行测试和开发。然而由于没有密码校验机制,密码输入错误时不会有错误提示,只有在应用实际访问数据库时才会报错。
原文链接:
转载地址:http://rqida.baihongyu.com/