Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/realLiangshiwei/SharpPlugs
.Net Core 鋒利扩展
https://github.com/realLiangshiwei/SharpPlugs
aspnetcore netcore plugs
Last synced: 2 months ago
JSON representation
.Net Core 鋒利扩展
- Host: GitHub
- URL: https://github.com/realLiangshiwei/SharpPlugs
- Owner: realLiangshiwei
- License: mit
- Archived: true
- Created: 2017-11-24T13:28:32.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-19T02:06:21.000Z (over 5 years ago)
- Last Synced: 2024-11-03T14:06:54.777Z (3 months ago)
- Topics: aspnetcore, netcore, plugs
- Language: C#
- Size: 1.24 MB
- Stars: 26
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SharpPlugs
.Net Core 鋒利扩展
[中文文档](/doc/readme_cn.md)Status
**This project is in very early preview stage and it's not suggested to use it in a real project**.
[![Build status](https://ci.appveyor.com/api/projects/status/74whrxjajlnacjma?svg=true)](https://ci.appveyor.com/project/ShiWei-L/sharpplugs)
[![NuGet](https://img.shields.io/nuget/v/SharpPlug.Core.svg)](https://www.nuget.org/packages/SharpPlug.Core/)
[![NuGet](https://img.shields.io/nuget/dt/SharpPlug.Core.svg)](https://www.nuget.org/packages/SharpPlug.Core/)## Current Features
- [DI](/doc/DI.md)
- AutoMapper
- ElasticSearch
- WebAPiRoute
- EntityFramework Repoistory## Get Started
First of all need to have a core project at asp.net Core, Here I've created a asp.net core MVC project
![asp.net core Project](/doc/img/getStarted/createProject.png)
Now, install SharpPlugs Core packages
```powershell
dotnet add package SharpPlug.Core
```AddSharpPlugCore during Startup
```c#
services.AddSharpPlugCore(opt=>{
opt.DiAssembly.Add(Assembly.GetExecutingAssembly());
});
```
![asp.net core Project](/doc/img/getStarted/2.png)Now we have the function of the dependency injection, I create a TestService classes with TestService interface
*Automatic dependency injection is a naming rules, ends in Service or Repository is automatically injected by default*
```c#
public class TestService : ITestService,IScopedDependency
{public string Hello()
{
return "Hello World";
}
}
```
In the injected ITestService HomeController
```c#
public class HomeController : Controller
{
private readonly ITestService _testService;
public HomeController(ITestService testService)
{
_testService = testService;
}
public IActionResult Index()
{
return View();
}public IActionResult Hello()
{
return Json(_testService.Hello()) ;
}
}
```
Now press F5 to debug,In your browser's address bar input /home/Hello,The request will be stay in the breakpoint![asp.net core Project](/doc/img/getStarted/3.png)
Now we press F5 to let it continue to run , We will see the Hello World output
![asp.net core Project](/doc/img/getStarted/4.png)
Want to know more usage?Please see the [advanced document](/doc/document.md)
## Nuget Packages
SharpPlugs is distributed as nuget packages.
|Package|Status|
|:------|:-----:|
|SharpPlug.Core|[![NuGet version](https://badge.fury.io/nu/SharpPlug.Core.svg)](https://badge.fury.io/nu/SharpPlug.Core)|
|SharpPlug.ElasticSearch|[![NuGet version](https://badge.fury.io/nu/SharpPlug.ElasticSearch.svg)](https://badge.fury.io/nu/Abp.AspNetCore)|
|SharpPlug.AutoMapper|[![NuGet version](https://badge.fury.io/nu/SharpPlug.AutoMapper.svg)](https://badge.fury.io/nu/SharpPlug.AutoMapper)|
|SharpPlug.WebApi|[![NuGet version](https://badge.fury.io/nu/SharpPlug.WebApi.svg)](https://badge.fury.io/nu/SharpPlug.WebApi)|
|SharpPlug.EntityFrameworkCore|[![NuGet version](https://badge.fury.io/nu/SharpPlug.EntityFrameworkCore.svg)](https://badge.fury.io/nu/SharpPlug.EntityFrameworkCore)|