public static string GetEntityName(this IDbObject dbObject)
 => namingConvention.GetClassName(dbObject.Name);
 public static string GetClassRepositoryName(this ProjectFeature <DapperProjectSettings> projectFeature)
 => CodeNamingConvention.GetClassName(string.Format("{0}Repository", projectFeature.Name));
Beispiel #3
0
 public static string GetEntityLayerNamespace(this EntityFrameworkCoreProject project)
 => string.Join(".", namingConvention.GetClassName(project.Name), namingConvention.GetNamespace(project.Namespaces.EntityLayer));