This file contains hidden or 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 void CleanAllTables() | |
| { | |
| var sql = $@" | |
| EXEC [sys].[sp_MSforeachtable] 'ALTER TABLE ? NOCHECK CONSTRAINT all'; | |
| EXEC [sys].[sp_MSforeachtable] 'SET QUOTED_IDENTIFIER ON; DELETE FROM ?'; | |
| EXEC [sys].[sp_MSforeachtable] 'ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all'; | |
| "; | |
| using (var conn = OpenConnection()) | |
| conn.Connection.ExecuteNonQuery(sql); | |
| } |
This file contains hidden or 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
| #nowarn "42" | |
| open System | |
| [<MeasureAnnotatedAbbreviation>] type bool<[<Measure>] 'm> = bool | |
| [<MeasureAnnotatedAbbreviation>] type uint64<[<Measure>] 'm> = uint64 | |
| [<MeasureAnnotatedAbbreviation>] type Guid<[<Measure>] 'm> = Guid | |
| [<MeasureAnnotatedAbbreviation>] type string<[<Measure>] 'm> = string | |
| [<MeasureAnnotatedAbbreviation>] type TimeSpan<[<Measure>] 'm> = TimeSpan | |
| [<MeasureAnnotatedAbbreviation>] type DateTime<[<Measure>] 'm> = DateTime |
This file contains hidden or 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
| open System | |
| [<AutoOpen>] | |
| module Helpers = | |
| let inline split (delimiter:char) (text:string) = text.Split [|delimiter|] | |
| let inline readLine() = Console.ReadLine() | |
| type OptionalBuilder () = | |
| member this.Bind(x, f) = |
This file contains hidden or 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
| self.addEventListener('install', function(event) { | |
| event.waitUntil( | |
| caches.open(cacheName).then(function(cache) { | |
| return cache.addAll( | |
| [ | |
| '/css/bootstrap.css', | |
| '/css/main.css', | |
| '/js/bootstrap.min.js', | |
| '/js/jquery.min.js', | |
| '/offline.html' |
This file contains hidden or 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
| CellularMobileOperator | Nom de l'opérateur mobile | |
|---|---|---|
| IsCellularDataEnabled | Indique si la connexion données est activée | |
| IsCellularDataRoamingEnabled | Indique si la connexion en données en roaming est activée | |
| IsNetworkAvailable | Indique si du réseau est disponible | |
| IsWiFiEnabled | Indique si la connexion WiFi est activée | |
| NetworkAvailabilityChanged | Déclenché lorsque la disponibilité du reseau change. |
This file contains hidden or 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
| Nom de membre | Description | |
|---|---|---|
| Default | La gestion par défaut de commandes d'entrée. | |
| Url | Le modèle d'entrée de texte pour une adresse URL (Uniform Resource Locator). | |
| FullFilePath | Le modèle d'entrée de texte pour le chemin d'accès complet d'un fichier. | |
| FileName | Le modèle d'entrée de texte pour un nom de fichier. | |
| EmailUserName | Le modèle d'entrée de texte pour un nom d'utilisateur de courrier électronique. | |
| EmailSmtpAddress | Le modèle d'entrée de texte pour une adresse de messagerie utilisant le protocole SMTP (Simple Mail Transfer Protocol). | |
| LogOnName | Le modèle d'entrée de texte pour un nom de connexion. | |
| PersonalFullName | Le modèle d'entrée de texte pour le nom complet d'une personne. | |
| PersonalNamePrefix | Le modèle d'entrée de texte pour le préfixe du nom d'une personne. |
This file contains hidden or 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
| _ |
This file contains hidden or 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
| STARTUP KEYS | DESCRIPTION | |
|---|---|---|
| Command+R | Boot to OS X Recovery Mode | |
| Alt/Option | Access Mac Startup Manager | |
| C | Boot to CD / DVD / USB | |
| N | NetBoot | |
| Shift | Safe Boot | |
| Command+V | Verbose Mode | |
| Command+S | Single User Mode | |
| Command+Option+P+R | Reset PRAM | |
| T | Enable Target Disk Mode |
This file contains hidden or 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
| namespace Fable.Import | |
| open System | |
| open System.Text.RegularExpressions | |
| open Fable.Core | |
| open Fable.Import.JS | |
| module Bloodhound = | |
| type [<AllowNullLiteral>] BloodhoundOptions<'T> = | |
| abstract datumTokenizer: Func<'T, ResizeArray<string>> with get, set | |
| abstract queryTokenizer: Func<string, ResizeArray<string>> with get, set |