This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @tableName NVARCHAR(256) | |
DECLARE @tableSchema NVARCHAR(100) | |
DECLARE @columnName NVARCHAR(256) | |
SET @tableName = '%CaseManager%' | |
SET @tableSchema = 'dbo' | |
SET @columnName = '%%' | |
SELECT * | |
FROM INFORMATION_SCHEMA.Columns |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mode: ContinuousDelivery | |
next-version: 1.0.0 | |
branches: | |
main: | |
tag: '' | |
develop: | |
tag: beta | |
feature: | |
tag: alpha | |
pull-request: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Provides an abstraction for hashing passwords. | |
/// </summary> | |
public interface IPasswordHasher | |
{ | |
/// <summary> | |
/// Returns a hashed representation of the supplied <paramref name="password"/> for the specified <paramref name="user"/>. | |
/// </summary> | |
/// <param name="password">The password to hash.</param> | |
/// <returns>A hashed representation of the supplied <paramref name="password"/> for the specified <paramref name="user"/>.</returns> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public readonly struct HashCode | |
{ | |
private readonly int _value; | |
private HashCode(int value) => _value = value; | |
public static HashCode Seed { get; } = new HashCode(17); | |
public HashCode Combine<T>(T obj) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// A paged collection. | |
/// </summary> | |
/// <typeparam name="T">The type of the items in the list.</typeparam> | |
/// <remarks> | |
/// When this collection is created, <see cref="IQueryable"/> Skip and Take is | |
/// calculated and called on the source list. Also, if total count | |
/// is not specified, <see cref="IQueryable"/> Count is called. | |
/// </remarks> | |
public class PagedList<T> : List<T> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class DictionaryExtensions | |
{ | |
/// <summary> | |
/// Adds a key/value pair to the Dictionary if the key does not already exist. | |
/// </summary> | |
/// <typeparam name="TKey">The type of the keys in the dictionary.</typeparam> | |
/// <typeparam name="TValue">The type of the values in the dictionary.</typeparam> | |
/// <param name="dictionary"></param> | |
/// <param name="key">The key of the element to add.</param> | |
/// <param name="valueFactory">The function used to generate a value for the key.</param> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources: | |
containers: | |
- container: sqlserver | |
image: mcr.microsoft.com/mssql/server:2019-latest | |
ports: | |
- 1433:1433 | |
env: | |
ACCEPT_EULA: 'Y' | |
SA_PASSWORD: $(SqlPassword) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect, createContext } from "react"; | |
import Loader from './Loader'; | |
interface Props { | |
children: JSX.Element; | |
file?: string; | |
} | |
interface IConfiguration{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Retry helpers for common retry scenario | |
/// </summary> | |
public static class Retry | |
{ | |
/// <summary> | |
/// The default retry count | |
/// </summary> | |
public const int RetryCount = 5; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="~/_framework/blazor.server.js" autostart="false" asp-append-version="true"></script> | |
<script> | |
Blazor.start({ | |
configureSignalR: function (builder) { | |
builder.withUrl('_blazor', { | |
skipNegotiation: true, | |
transport: 1 | |
}); | |
builder.configureLogging(1); | |
} |