My Elasticsearch cheatsheet with example usage via rest api (still a work-in-progress)
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
| import sun.misc.BASE64Encoder; | |
| import sun.misc.BASE64Decoder; | |
| import javax.crypto.Cipher; | |
| import javax.crypto.KeyGenerator; | |
| import javax.crypto.SecretKey; | |
| import javax.crypto.spec.SecretKeySpec; | |
| /** |
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
| using System.Data.Common; | |
| /// <summary> | |
| /// Extension methods for System.Data.Common.DbProviderFactory. | |
| /// </summary> | |
| internal static class DbProviderFactoryExtensions | |
| { | |
| /// <summary> | |
| /// Returns a new instance of the provider's class that implements the | |
| /// System.Data.Common.DbConnection class. |