GraphQL.Code.Generator.Net
1.0.0.7
Suggested Alternatives
Additional Details
Migrated to GraphQL.Code.Generator. One package for Core and Framework
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 GraphQL.Code.Generator.Net --version 1.0.0.7
NuGet\Install-Package GraphQL.Code.Generator.Net -Version 1.0.0.7
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="GraphQL.Code.Generator.Net" Version="1.0.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GraphQL.Code.Generator.Net --version 1.0.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: GraphQL.Code.Generator.Net, 1.0.0.7"
#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 GraphQL.Code.Generator.Net as a Cake Addin #addin nuget:?package=GraphQL.Code.Generator.Net&version=1.0.0.7 // Install GraphQL.Code.Generator.Net as a Cake Tool #tool nuget:?package=GraphQL.Code.Generator.Net&version=1.0.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Configuration.ElementsToGenerate = Configuration.Elements.Types | Configuration.Elements.Repositoy | Configuration.Elements.Query;
Configuration.TypeClasses.RepositoryConstructorParameter
= "RepositoryNamespace.RepositoryClass repositoryConstructorParameterName";
Configuration.TypeClasses.RepositoryPrivateMember
= "RepositoryNamespace.RepositoryClass repositoryPrivateMemberName";
// In constructor of Type class it will translate as this.repositoryPrivateMemberName = repositoryConstructorParameterName;
Configuration.TypeClasses.TypeClassesNamespace = "GraphQL.Types.Custom";
// This will translate as namespace GraphQL.Types.Custom {...
Configuration.TypeClasses.EntityClassesNamespacesInclude = new Regex(@"^EntitiesNamespace$", RegexOptions.IgnoreCase);
// Any namespace in input dll (where entities classes are) match above regular expression will be included.
Configuration.TypeClasses.EntityClassNamesExclude =
new Regex(@"^Rusp.*$|^DatabaseInitializer$|^DBManager$|^DataSeeder$", RegexOptions.IgnoreCase);
// Any class match above regular expression will be excluded
Configuration.TypeClasses.AdditionalNamespaces = "MyNamespace1, MyNamespace2";
string path = @"c:\dllFolder\EntitiesAssembly.dll";
Configuration.InputDllNameAndPath = path;
Configuration.TypeClasses.EntityClassNamesInclude
= new Regex(@"^DomainClass1$|^DomainClass2$", RegexOptions.IgnoreCase);
// Any class in input dll (where entities classes are) match above regular expression will be included.
Dictionary<string, string> pluralizationFilter = new Dictionary<string, string>();
pluralizationFilter.Add("Person", "Persons");
Configuration.PluralizationFilter = pluralizationFilter;
Configuration.TypeClasses.AdditionalCodeToBeAddedInConstructor = "InitializePartial();";
//Above setting will create InitializePartial(); in the Type Classes constructor and this can be used to call partial class method. If you don't have InitializePartial in your
// partial class or you don't have partial class at all then remove above line. But you can add this later if in all the classes you called some partial class method.
Configuration.RepositoryClass.DBContextPrivateMember
= "MyDbContextNamespace.MyDbContextclass _context";
Configuration.RepositoryClass.DBContextConstructorParameter
= "MyDbContextNamespace.MyDbContextclass context";
Configuration.RepositoryClass.RepositoryClassName = "CustomRepository";
Configuration.RepositoryClass.RepositoryClassesNamespace = "Custom.Repository.namespace";
Configuration.RepositoryClass.AdditionalNamespaces = "MyNamespace1, MyNamespace2";
//Configuration.RepositoryClass.MethodExcludeFilter = new List<string> { "GetPersons" };
//Configuration.RepositoryClass.IsMethodExcludeFilterApplyToInterface = true;
Configuration.QueryClass.RepositoryConstructorParameter
= "RepositoryNamespace.RepositoryClass repositoryConstructorParameterName";
Configuration.QueryClass.RepositoryPrivateMember
Configuration.QueryClass.QueryClassName = "CustomGraphQLQuery";
Configuration.QueryClass.QueryClassNamespace = "Graph.Queries";
Configuration.QueryClass.AdditionalNamespaces = "MyNamespace1, MyNamespace2";
int fileCount = GraphQL.Code.Generator.GraphQLCodeGenerator.GenerateGraphQLCode();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
- EntityFramework (>= 6.4.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added boolean type fields in Query field Argument and Repository Method as Nullable parameter.