Skip to content
This repository has been archived by the owner on Apr 13, 2021. It is now read-only.

mt89vein/HeadHunterClient

Repository files navigation

Install

  • download or clone
  • build
  • apply EFCore migrations:
   $ update-database
  • add Scalar function to database (used in filtering)
    USE HeadHunterClient
    GO

    ALTER FUNCTION dbo.ConvertToCurrency (@amount DECIMAL(18, 6), @code NVARCHAR(450))
    RETURNS MONEY
    BEGIN
      RETURN (@amount * (SELECT TOP 1
          Rate
        FROM Currency
        WHERE Code = @code)
      )
    END

    GO

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published