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
using System.Collections.ObjectModel; | |
using System.Runtime.CompilerServices; | |
using System.Security.Cryptography.X509Certificates; | |
using Microsoft.AspNetCore.Mvc; | |
using Microsoft.EntityFrameworkCore; | |
namespace MyApplication.Web.Controllers | |
{ | |
public class ProductControl : Controller | |
{ |
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
using Domain.Toolkit; | |
using Domain.Sample.AppModels.Attributes; | |
using Domain.Sample.DbModels.Sample; | |
namespace Domain.Sample.Services.Attributes; | |
public class AttributeCrudCommands : IAttributeCrudCommands | |
{ | |
private readonly SampleDbContext _db; | |
private readonly ILogger<AttributeCrudCommands> _logger; |
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
Using this file to rename the gist |
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
using Ganss.XSS; | |
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
namespace VEIC.Tracker.Services.Tests.Shared | |
{ | |
[TestClass] | |
public class HtmlSanitizerTests | |
{ | |
private IHtmlSanitizer _htmlSanitizer; |
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
BEGIN -- Delete all tables in order to re-create. | |
DECLARE @sql NVARCHAR(MAX); | |
SET @sql = N''; | |
SELECT @sql = @sql + N' | |
ALTER TABLE ' + QUOTENAME(s.name) + N'.' | |
+ QUOTENAME(t.name) + N' DROP CONSTRAINT ' | |
+ QUOTENAME(c.name) + ';' | |
FROM sys.objects AS c | |
INNER JOIN sys.tables AS 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
using System; | |
using System.Net.Http; | |
using System.Net.Http.Headers; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleTestApp1 | |
{ | |
class Program | |
{ |
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 class FooDbContextFactory : IDesignTimeDbContextFactory<FooDbContext> | |
{ | |
public FooDbContext CreateDbContext(string[] args) | |
{ | |
var optionsBuilder = new DbContextOptionsBuilder<FooDbContext>(); | |
optionsBuilder.UseSqlServer("DeaultConnection"); | |
return new FooDbContext(optionsBuilder.Options); | |
} | |
} |
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
Vue.directive('on-show-bs-tab', { | |
bind: function (el, binding) { | |
// This is BS4 jQuery | |
// When the tab is activated, load the data! | |
$(el).on('show.bs.tab', function (e) { | |
if (typeof binding.value === "function") { | |
binding.value.call(); | |
} | |
}); | |
} |
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
[TestMethod] | |
public void PrintListIds() | |
{ | |
PrintListIds("key", "id"); | |
PrintListIds("key", "id"); | |
PrintListIds("key", "id"); | |
} | |
private static void PrintListIds(string apiKey, string clientId) | |
{ |
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
[Test] | |
public void GetSimilarity_SpaceInTarget_NotZero() | |
{ | |
var matcher = new SimMetricsMetricUtilities.JaroWinkler(); | |
var target = " 1 main"; | |
var candidate = "1 main st"; | |
var similarity = matcher.GetSimilarity(candidate, target); | |
var message = string.Format("Expect similarity {0} to be > .9", similarity); | |
Assert.IsTrue(similarity > .90, message); |
NewerOlder