Librame 5.0.5
dotnet add package Librame --version 5.0.5
NuGet\Install-Package Librame -Version 5.0.5
<PackageReference Include="Librame" Version="5.0.5" />
paket add Librame --version 5.0.5
#r "nuget: Librame, 5.0.5"
// Install Librame as a Cake Addin #addin nuget:?package=Librame&version=5.0.5 // Install Librame as a Cake Tool #tool nuget:?package=Librame&version=5.0.5
Support ASP.NET MVC 6 + EntityFramework 7 + Kendo UI...
Product | Versions Compatible and additional computed target framework versions. |
---|---|
ASP.NET | aspnet50 is compatible. |
-
ASP.NET 5.0
- EntityFramework.SqlServer (>= 7.0.0-rc1-11854)
- Microsoft.AspNet.Mvc (>= 6.0.0-rc1-12214)
- Microsoft.AspNet.Security.OAuth (>= 1.0.0-rc1-11279)
- Microsoft.Framework.ConfigurationModel.Json (>= 1.0.0-rc1-10645)
- Microsoft.Framework.DependencyInjection (>= 1.0.0-rc1-10675)
- Newtonsoft.Json (>= 6.0.8)
GitHub repositories
This package is not used by any popular GitHub repositories.
Librame 5.0.5 (2015-02-19)
-- 移除 Librame.Context.Mvc 命名空间下默认的 DataScopesController 等枚举控制器;
Example:
1. Models
public class Blog : Librame.Data.Models.IdEntity
{
public string Title { get; set; }
public string Description { get; set; }
public DateTime Pubdate { get; set; }
public Blog()
{
Pubdate = DateTime.Now;
}
}
public class TestDbContext : DbContext
{
protected override void OnModelCreating(ModelBuilder builder)
{
builder.Entity<Blog>(b =>
{
b.ForRelational().Table("Blogs");
b.Property(p => p.Id).GenerateValuesOnAdd();
b.Property(p => p.Title).Required().MaxLength(50);
b.Property(p => p.Description);
b.Property(p => p.Pubdate).Required();
b.Key(k => k.Id);
});
}
}
2. Startup.cs
public void ConfigureServices(IServiceCollection services)
{
services.AddEntityFramework(Configuration)
.AddSqlServer()
.AddDbContext<TestDbContext>();
services.AddMvc();
services.AddLibrame();
}
3. Controllers
public class BlogController : Librame.Context.Controllers.ControllerRepository<TestDbContext, Blog>
{
}
4. Apis
[Route("api/[controller]")]
public class BlogsController : Librame.Context.Controllers.ControllerApi<TestDbContext, Blog>
{
}
Request http://localhost/Blog
Request http://localhost/api/Blogs
Response [{Id:1,...}]
Request http://localhost/Blog?take=10
Request http://localhost/api/Blogs?take=10
Response {rows:[{Id:1,...}],total:100}
QQ Group: 112768263
Email: 312535437@qq.com