- Every Store (wants) every Product
- Every Warehouse (Has) every Product
- Stores (Must_Use) certain Warehouses for certain Products.
- A graph Edge only references two Nodes: from & to
- How can we constrain an Edge to a third Node (Product)
| DBCC DROPCLEANBUFFERS; | |
| CHECKPOINT; | |
| DBCC FREEPROCCACHE WITH no_infomsgs; | |
| GO | |
| CREATE OR ALTER FUNCTION Range (@start BIGINT, @end BIGINT) | |
| RETURNS @table TABLE (Id BIGINT) AS | |
| BEGIN | |
| -- Jerry Nixon |
| BEGIN TRANSACTION | |
| CREATE TABLE x | |
| ( | |
| Id INT NOT NULL PRIMARY KEY | |
| , Name VARCHAR(150) NOT NULL | |
| ); | |
| WITH generator (Id, Name) AS |
| Console.Clear(); | |
| Console.CursorVisible = false; | |
| var cat = new Cat(); | |
| while (true) | |
| { | |
| cat.Erase(); | |
| if (Console.KeyAvailable) |
| var x = 4; | |
| var y = x.ToString(); // y equals "4" | |
| var x = 4; | |
| var y = x.ToString("##"); // y equals "4" | |
| var x = 4; | |
| var y = x.ToString("###"); // y equals "4" | |
| var x = 4; |
| using System.Drawing; | |
| // read file as bytes | |
| var path = @"c:\dev\ent.png"; | |
| var bytes = File.ReadAllBytes(path); | |
| // save as text |
| using System.IO; | |
| var path = @"c:\dev"; | |
| Directory.Delete(path, true); | |
| Directory.CreateDirectory(path); | |
| var array = new[] { "a", "b", "c" }; | |
| for (double i = 0; i < 500; i = i + .35) |
| using Microsoft.Azure.WebJobs; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| public static class Csv | |
| { | |
| public static IEnumerable<T> Read<T>(ExecutionContext context, string file) where T : new() |
| NuGet | |
| WinGet | |
| GitHub | |
| Git versus GitHub | |
| Visual Studio Code | |
| Visual Studio Code versus Visual Studio | |
| Visual Studio Version | |
| Visual Studio Edition | |
| Visual Studio Architecture |
| using System; | |
| using System.Linq; | |
| using System.Collections.Generic; | |
| using JerryUnit; | |
| using static JerryUnit.UnitTestAttribute; | |
| public class Program | |
| { | |
| public static void Main() |