Vidyano.SourceGenerators
2.21.2
Prefix Reserved
See the version list below for details.
dotnet add package Vidyano.SourceGenerators --version 2.21.2
NuGet\Install-Package Vidyano.SourceGenerators -Version 2.21.2
<PackageReference Include="Vidyano.SourceGenerators" Version="2.21.2"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
<PackageVersion Include="Vidyano.SourceGenerators" Version="2.21.2" />
<PackageReference Include="Vidyano.SourceGenerators"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add Vidyano.SourceGenerators --version 2.21.2
#r "nuget: Vidyano.SourceGenerators, 2.21.2"
#:package Vidyano.SourceGenerators@2.21.2
#addin nuget:?package=Vidyano.SourceGenerators&version=2.21.2
#tool nuget:?package=Vidyano.SourceGenerators&version=2.21.2
Disclaimer
- Use of SourceGenerators depend on available content.
- Analyzers and CodeFixes are available in any project.
Some Patterns are not supported by Analyzers at the moment:
- When Clause on Switch Expression / Statements
Generators
- Actions Generator
- BusinessRules Generator
- Context Generator
- CustomAction Generator
- Index Generator
- Model Generator
- ProjectTargetType Generator
Generated Constant classes
All generated Constant classes are available under {RootNamespace}.Service.Generated namespace.
BusinessRuleNamesPersistentObjectTypesPersistentObjectAttributeNamesProgramUnitNamesProgramUnitItemsNamesQueryNamesQuerySourcesActionNamesLanguagesMessageKeysandMessagesAppRolesWebsiteNamesObsolete.PersistentObjectTypes
Dependency Injection
By using the InitializeByCtor attribute on a field, the source generator will inject this field via the generated constructor.
The Attribute can only be applied when no constructor is provided.
public partial class CompanyActions
{
[InitializeByCtor]
private readonly IMyService myService;
}
Attribute is available via reference Vidyano.Abstractions.
Index Generator
Generate an overview index by adding the GenerateIndex attribute to an entity.
This will result in the following being generated:
- A partial
{Entity}class with aQueryTypeattribute. - A partial
{VEntity}QueryType class. - A partial
{Entities}_OverviewIndex class. - A
V{Entities}property on theContextif it does not already exist.
Creating an Index for an Entity
Adding this GenerateIndexattribute creates an overview index.
- To change the name of the Index, pass the desired type as an argument. Note: Include a namespace if you want the index to be generated under a different namespace.
- To change the name of the QueryType, use the QueryType attribute.
Important Notes:
- Index will not be generated if
QueryTypeorIndexis already added manually, except if they are partial. - If the QueryType contains audit fields, the appropriate interface will be applied. This can differ from the Entity if you add
IgnoreForIndexto an audit field. - Only the
IIdinterface will be copied to the QueryType.
Additional Attributes
You can add several attributes to the entity's properties to control the index:
Search: Adding this attribute creates a second{Property}_Sortproperty to allow full search on this property.Note: This is only needed when values can contain spaces.
IgnoreForIndex: This property will not be included in the index.IndexReference: You can include a property from theReferencein the index by adding one attribute per property and defining the path on the reference. This can be more than one level deep.Note:
- If the
ReferenceisNullable, then every generatedIndexReferenceproperty is alsoNullable. - Path cannot contains a
Collectionproperty.
- If the
[GenerateIndex]
public partial class Customer
{
public string Id {get; set;}
[Search]
public string Name {get; set;}
[IgnoreForIndex]
public string Private {get; set;}
[IndexReference(nameof(Person.Name), Search = true)]
[IndexReference("Address.CityName")]
[Reference(typeof(Person)]
public string Person {get; set;}
}
Projects
Main project
Additional Files & Global Usings
Add following ItemGroup to the .csproj project file.
<ItemGroup>
<AdditionalFiles Include="App_Data\**\*.json" />
<Using Include="$(MSBuildProjectName).Service.Generated" />
<Using Alias="Types" Include="$(MSBuildProjectName).Service.Generated.PersistentObjectTypes.$(MSBuildProjectName)" />
<Using Alias="AttributeNames" Include="$(MSBuildProjectName).Service.Generated.PersistentObjectAttributeNames.$(MSBuildProjectName)" />
<Using Alias="QueryNames" Include="$(MSBuildProjectName).Service.Generated.QueryNames.$(MSBuildProjectName)" />
<Using Alias="QuerySources" Include="$(MSBuildProjectName).Service.Generated.QuerySources.$(MSBuildProjectName)" />
</ItemGroup>
External Context
If the context file does not exist in the main project, you can use the appsettings.json file as an alternative, as the context will be read from there.
<ItemGroup>
<AdditionalFiles Include="appsettings.json" />
</ItemGroup>
Library project
Missing App_Data json files warning
When incorporating SourceGenerators into a library project, you may encounter a VIDYANO0010 warning indicating missing App_Data JSON files. This warning is not applicable to library projects, as they do not utilize App_Data.
To bypass this warning, two methods are available.
- By disabling the Model SourceGenerator via local
.editorconfigfile
is_global = true
# Source Generators
disable_model_source_generator = true
- By ignore the warning via csproj file
<NoWarn>VIDYANO0010</NoWarn>
Exceptions
When using EmitCompilerGeneratedFiles in .csproj project file you can get exceptions when compiling in Windows because of use of long filenames.
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
To fix this issue you need to add the following registration key (Reboot needed to take effect)
reg ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem /v LongPathsEnabled /t REG_DWORD /d 1
Backwards Compatibility
For backwards compatibility we created an Obsolete PersitentObjectTypes class (old version).
The only thing you need todo when upgrading to the new source generator is changing the using in de .csproj project file by adding the Generated.Obsolete namespace.
<Using Alias="Types" Include="Fleet.Service.Generated.Obsolete.PersistentObjectTypes.Fleet" />
This way the project wil run as before.
Note: If you add the new usings directly you can use de CodeFix to update to the correct code.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
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 |
|---|---|---|
| 3.4.0 | 579 | 12/10/2025 |
| 3.3.0 | 745 | 12/3/2025 |
| 3.2.0 | 421 | 11/24/2025 |
| 3.1.0 | 561 | 11/18/2025 |
| 3.0.0 | 364 | 11/7/2025 |
| 2.23.0 | 1,640 | 9/19/2025 |
| 2.22.1 | 2,296 | 5/16/2025 |
| 2.22.0 | 391 | 5/13/2025 |
| 2.21.2 | 1,894 | 3/12/2025 |
| 2.21.1 | 243 | 3/12/2025 |
| 2.21.0 | 513 | 3/5/2025 |
| 2.19.1 | 1,451 | 1/23/2025 |
| 2.19.0 | 549 | 1/16/2025 |
| 2.18.0 | 240 | 1/16/2025 |
| 2.16.0 | 1,690 | 12/4/2024 |
| 2.15.0 | 1,101 | 11/19/2024 |
| 2.14.0 | 1,698 | 10/18/2024 |
| 2.13.0 | 1,022 | 10/2/2024 |
| 2.12.0 | 478 | 9/16/2024 |
| 2.11.0 | 388 | 8/30/2024 |
| 2.10.0 | 1,694 | 7/7/2024 |
| 2.9.0 | 932 | 6/27/2024 |
| 2.8.0 | 1,688 | 5/26/2024 |
| 2.7.0 | 917 | 5/7/2024 |
| 2.6.0 | 823 | 4/19/2024 |
| 2.5.1 | 1,048 | 3/29/2024 |
| 2.4.0 | 1,116 | 2/29/2024 |
| 2.3.0 | 380 | 2/22/2024 |
| 2.2.3 | 2,914 | 10/23/2023 |
| 2.1.6 | 1,759 | 9/19/2023 |
| 1.8.1 | 1,676 | 6/29/2023 |
| 1.8.0 | 301 | 6/28/2023 |
| 1.7.0 | 376 | 6/25/2023 |
| 1.6.2 | 800 | 6/12/2023 |
| 1.6.1 | 875 | 5/17/2023 |
| 1.6.0 | 283 | 5/17/2023 |
| 1.5.3 | 721 | 5/2/2023 |
| 1.5.2 | 1,092 | 4/1/2023 |
| 1.5.1 | 406 | 3/31/2023 |
| 1.4.1 | 1,039 | 2/17/2023 |