CC.CodeGenerator 1.4.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package CC.CodeGenerator --version 1.4.3
NuGet\Install-Package CC.CodeGenerator -Version 1.4.3
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.4.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CC.CodeGenerator --version 1.4.3
#r "nuget: CC.CodeGenerator, 1.4.3"
#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.4.3

// Install CC.CodeGenerator as a Cake Tool
#tool nuget:?package=CC.CodeGenerator&version=1.4.3

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

4. 自动实现INotifyPropertyChanged接口

[AddNotifyPropertyChanged]
internal partial class Demo
{
    public int MyProperty { get => _MyProperty; set => SetProperty(ref _MyProperty, value); }
    private int _MyProperty;

}
var data = new Demo();
data.PropertyChanged += (s, e) => Console.WriteLine($"属性{e.PropertyName}被修改");
data.MyProperty = 1;
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 249 3/29/2023
2023.4.325 204 3/25/2023
2023.3.304 246 3/4/2023
1.9.1.725 492 7/25/2022
1.9.0.723 382 7/23/2022
1.8.4.721 395 7/21/2022
1.8.3.719 414 7/19/2022
1.8.2.716 470 7/16/2022
1.8.1.709 435 7/9/2022
1.8.0.709 415 7/9/2022
1.7.0.617 413 6/17/2022
1.6.1.616 420 6/16/2022
1.6.0.508 424 5/8/2022
1.5.3.505 385 5/6/2022
1.4.3 414 5/4/2022
1.3.0 418 3/19/2022
1.2.0 403 3/12/2022
1.1.3 446 3/9/2022
1.1.1 434 1/26/2022
1.1.0 431 1/23/2022
1.0.18 451 1/21/2022
1.0.17 390 1/21/2022
1.0.16 396 1/19/2022