Developer Checklist

Developer Checklist

Global Check List

  • Before creating new class need to check existing classes if possible to use then use it
  • Unused directories should be removed from New Files.
  • Always use DateTime.Now with DateTime properties in model class.

Import Specific Checklist

  • The errorcodes which we are checking hardcode values should be part of readingxl
  • Add Id Column in the #temp Creation
        id INT PRIMARY KEY IDENTITY(1,1)

Db Table Specific Checklist

  • Add Id Column in the Creation

        id INT PRIMARY KEY IDENTITY(1,1)
  • If DataAnnotationsValidator is triggering validation and you need to identify which field caused the error, use the tag in the Razor page to display field-specific validation messages.