Showing 886 of 3,221 total issues
File 20190514053645_RefactoringAttributeNames.cs
has 2759 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
namespace Microting.eForm.Migrations
{
Method Up
has 1552 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "eFormVersion",
table: "UnitVersions",
File CoreTestCase.cs
has 2752 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
using eFormCore;
using Microsoft.EntityFrameworkCore;
using NUnit.Framework;
using System;
using System.Collections.Generic;
Method BuildTargetModel
has 1544 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
string autoIDGenStrategy = "SqlServer:ValueGenerationStrategy";
object autoIDGenStrategyValue = MySqlValueGenerationStrategy.IdentityColumn;
Method BuildTargetModel
has 1543 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
string autoIDGenStrategy = "SqlServer:ValueGenerationStrategy";
object autoIDGenStrategyValue = MySqlValueGenerationStrategy.IdentityColumn;
Method Down
has 1518 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_FolderTranslations_Folders_FolderId",
table: "FolderTranslations");
Method BuildTargetModel
has 1516 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
string autoIDGenStrategy = "SqlServer:ValueGenerationStrategy";
object autoIDGenStrategyValue = MySqlValueGenerationStrategy.IdentityColumn;
Method BuildTargetModel
has 1511 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
string autoIDGenStrategy = "SqlServer:ValueGenerationStrategy";
object autoIDGenStrategyValue = SqlServerValueGenerationStrategy.IdentityColumn;
File 20201220194822_FixingTableColumnNames.Designer.cs
has 2657 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microting.eForm.Infrastructure;
File 20201220201427_FixingQuestionSet.Designer.cs
has 2655 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microting.eForm.Infrastructure;
File 20201130204234_FixingSplitScreen.Designer.cs
has 2655 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microting.eForm.Infrastructure;
File 20201222125152_HugheTableRenaming.Designer.cs
has 2655 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microting.eForm.Infrastructure;
File 20201116164405_AddingDescriptionToEntityGroup.Designer.cs
has 2655 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microting.eForm.Infrastructure;
Method BuildTargetModel
has 1429 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
string autoIDGenStrategy = "SqlServer:ValueGenerationStrategy";
object autoIDGenStrategyValue = MySqlValueGenerationStrategy.IdentityColumn;
Method BuildTargetModel
has 1425 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
string autoIDGenStrategy = "SqlServer:ValueGenerationStrategy";
object autoIDGenStrategyValue = MySqlValueGenerationStrategy.IdentityColumn;
Method BuildTargetModel
has 1425 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
string autoIDGenStrategy = "SqlServer:ValueGenerationStrategy";
object autoIDGenStrategyValue = MySqlValueGenerationStrategy.IdentityColumn;
Method BuildTargetModel
has 1424 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
string autoIDGenStrategy = "SqlServer:ValueGenerationStrategy";
object autoIDGenStrategyValue = MySqlValueGenerationStrategy.IdentityColumn;
Method BuildTargetModel
has 1424 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
string autoIDGenStrategy = "SqlServer:ValueGenerationStrategy";
object autoIDGenStrategyValue = MySqlValueGenerationStrategy.IdentityColumn;
File SqlControllerTestEntity.cs
has 2460 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microting.eForm;
Method DownloadUploadedData
has a Cognitive Complexity of 346 (exceeds 20 allowed). Consider refactoring. Open
Open
public async Task<bool> DownloadUploadedData(int uploadedDataId)
{
string methodName = "Core.DownloadUploadedData";
Microting.eForm.Infrastructure.Data.Entities.UploadedData uploadedData =
await _sqlController.GetUploadedData(uploadedDataId).ConfigureAwait(false);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"