Skip to content
View pregress's full-sized avatar
Block or Report

Block or report pregress

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
pregress/README.md

Hi there πŸ‘‹

I'm a freelance back-end developer.

Is the performance of your SQL server like a 🚜 but do you want a πŸš€ ? Do you need some Azure functions ⚑ ? Or do you want help on your Azure ☁️ solution ? Or would you rather have a πŸ€– to interact with your clients?

πŸ“« You can reach me via hello@pregress.be

I like working with:

- C#
- Azure
- SQL Server
- Distributed Systems
- Domain Driven Design
- API's
- Web Application Security

In my spare time:

  • I'm a father πŸ‘Ά
  • I enjoy trail running in the mountains πŸ—»
  • Love snowboarding πŸ‚

Stackoverflow

When time permits I try to help people on stackoverflow:

stackoverflow flair

Pinned

  1. n8n-nodes-azure-blob-storage n8n-nodes-azure-blob-storage Public

    n8n custom node that connects to azure blob storage

    TypeScript 6

  2. SqlServerBulkCopyTool SqlServerBulkCopyTool Public

    Command line tool, to copy data between a source an destination SQL server.

    C# 3

  3. katriendg/ondertitelvoorlezeruwp katriendg/ondertitelvoorlezeruwp Public archive

    Windows app - Ondertitel lezer https://www.canvas.be/team-scheire

    C# 2 6

  4. Get all contraints in MS SQL server Get all contraints in MS SQL server
    1
    SELECT C.TABLE_CATALOG [PKTABLE_QUALIFIER], 
    2
           C.TABLE_SCHEMA [PKTABLE_OWNER], 
    3
           C.TABLE_NAME [PKTABLE_NAME], 
    4
           KCU.COLUMN_NAME [PKCOLUMN_NAME], 
    5
           C2.TABLE_CATALOG [FKTABLE_QUALIFIER], 
  5. Get a property name by expression (T... Get a property name by expression (Type safe)
    1
    protected string GetPropertyName<T>(Expression<Func<T>> propertyExpression)
    2
    {
    3
        if (propertyExpression == null)
    4
        {
    5
            throw new ArgumentNullException("propertyExpression");