CC.CodeGenerator 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package CC.CodeGenerator --version 1.1.0
                    
NuGet\Install-Package CC.CodeGenerator -Version 1.1.0
                    
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.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CC.CodeGenerator" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="CC.CodeGenerator" />
                    
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 CC.CodeGenerator --version 1.1.0
                    
#r "nuget: CC.CodeGenerator, 1.1.0"
                    
#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=CC.CodeGenerator&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=CC.CodeGenerator&version=1.1.0
                    
Install as a Cake Tool

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}";
}

效果演示

GIF 2022-1-21 13-44-18

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.

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 325 3/29/2023
2023.4.325 259 3/25/2023
2023.3.304 297 3/4/2023
1.9.1.725 587 7/25/2022
1.9.0.723 452 7/23/2022
1.8.4.721 465 7/21/2022
1.8.3.719 469 7/19/2022
1.8.2.716 553 7/16/2022
1.8.1.709 501 7/9/2022
1.8.0.709 489 7/9/2022
1.7.0.617 467 6/17/2022
1.6.1.616 493 6/16/2022
1.6.0.508 497 5/8/2022
1.5.3.505 458 5/6/2022
1.4.3 483 5/4/2022
1.3.0 493 3/19/2022
1.2.0 478 3/12/2022
1.1.3 524 3/9/2022
1.1.1 496 1/26/2022
1.1.0 508 1/23/2022
1.0.18 525 1/21/2022
1.0.17 463 1/21/2022
1.0.16 474 1/19/2022