Librame 5.0.5

dotnet add package Librame --version 5.0.5
                    
NuGet\Install-Package Librame -Version 5.0.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Librame" Version="5.0.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Librame" Version="5.0.5" />
                    
Directory.Packages.props
<PackageReference Include="Librame" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Librame --version 5.0.5
                    
#r "nuget: Librame, 5.0.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Librame&version=5.0.5
                    
Install Librame as a Cake Addin
#tool nuget:?package=Librame&version=5.0.5
                    
Install Librame as a Cake Tool

Support ASP.NET MVC 6 + EntityFramework 7 + Kendo UI...

Product Compatible and additional computed target framework versions.
ASP.NET aspnet50 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.0.5 122 2/19/2015
5.0.4 71 2/17/2015
5.0.3 82 1/29/2015
5.0.2 73 1/29/2015
5.0.1 89 1/19/2015
5.0.0 81 1/18/2015
5.0.0-beta1 78 1/17/2015

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