CC.CodeGenerator
1.1.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package CC.CodeGenerator --version 1.1.1
NuGet\Install-Package CC.CodeGenerator -Version 1.1.1
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="CC.CodeGenerator" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CC.CodeGenerator --version 1.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CC.CodeGenerator, 1.1.1"
#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.
// Install CC.CodeGenerator as a Cake Addin #addin nuget:?package=CC.CodeGenerator&version=1.1.1 // Install CC.CodeGenerator as a Cake Tool #tool nuget:?package=CC.CodeGenerator&version=1.1.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CC.CodeGenerator
利用.Net的Source Generator功能,生成开发过程中哪些无聊的代码。
使用方法
1. 安装
安装代码生成包以及支持包
Install-Package CC.CodeGenerator
Install-Package CC.NetCore
因为VS的原因,在添加包引用或者升级包版本后,建议重启VS。
Program.cs中添加全局引用
global using CC.CodeGenerator;
2. 对象Mapping
创建Class或record文件,并加入Dto特性
Ignore:忽略不需要的属性
[Dto()]
public partial class PeopleEditDto
{
public Guid PeopleId { get; set; }
public string UserName { get; set; }
public string City { get; set; }
[Ignore]
public string Display => $"{UserName} {City}";
}
效果演示
3. 支持EF简化单表操作
Program.cs中加入EF实体引用
global using CC.CodeGenerator.Demo.Entity;
特性中增加参数
Context:上下文对象
Entity:映射的EF实体
[Dto(Context =nameof(DemoaContext),Entity =typeof(People))]
public partial class PeopleEditDto
查询和保存示例
var context=new DemoaContext();
var peoples= PeopleEditDto.SelectGen(context.People.Where(x => x.UserName.StartsWith("Latanya"))).ToList();
var me= peoples.FirstOrDefault();
me.City = "上海";
me.SaveGen(context);
context.SaveChanges();
3. 服务注册代码自动创建
Program.cs中标记注册位置
var builder = WebApplication.CreateBuilder(args);
CC.CodeGenerator.AutoDI.AddServices(builder);//加入此行代码
服务中增加ServiceAttribute
LifeCycle:自定义生命周期,默认Scoped
[Service(LifeCycle = ELifeCycle.Singleton)]
public class WeatherForecastService
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.CodeAnalysis.CSharp (>= 4.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2023.5.329 | 286 | 3/29/2023 |
2023.4.325 | 228 | 3/25/2023 |
2023.3.304 | 266 | 3/4/2023 |
1.9.1.725 | 538 | 7/25/2022 |
1.9.0.723 | 408 | 7/23/2022 |
1.8.4.721 | 424 | 7/21/2022 |
1.8.3.719 | 426 | 7/19/2022 |
1.8.2.716 | 504 | 7/16/2022 |
1.8.1.709 | 460 | 7/9/2022 |
1.8.0.709 | 446 | 7/9/2022 |
1.7.0.617 | 425 | 6/17/2022 |
1.6.1.616 | 448 | 6/16/2022 |
1.6.0.508 | 449 | 5/8/2022 |
1.5.3.505 | 410 | 5/6/2022 |
1.4.3 | 439 | 5/4/2022 |
1.3.0 | 444 | 3/19/2022 |
1.2.0 | 430 | 3/12/2022 |
1.1.3 | 472 | 3/9/2022 |
1.1.1 | 444 | 1/26/2022 |
1.1.0 | 454 | 1/23/2022 |
1.0.18 | 474 | 1/21/2022 |
1.0.17 | 410 | 1/21/2022 |
1.0.16 | 422 | 1/19/2022 |