├── .gitignore ├── DeleteLocalhostElasticsearch.ps1 ├── ElasticsearchCrud.sln ├── README.md ├── global.json ├── packages ├── ElasticsearchCrud.2.3.3.1-beta2 │ ├── ElasticsearchCrud.2.3.3.1-beta2.nupkg │ └── lib │ │ └── netstandard1.4 │ │ └── ElasticsearchCrud.dll ├── ElasticsearchCrud.2.3.3.1 │ ├── ElasticsearchCrud.2.3.3.1.nupkg │ └── lib │ │ └── netstandard1.4 │ │ └── ElasticsearchCrud.dll ├── EntityFramework.6.1.2 │ ├── EntityFramework.6.1.2.nupkg │ ├── content │ │ ├── App.config.transform │ │ └── Web.config.transform │ ├── lib │ │ ├── net40 │ │ │ ├── EntityFramework.SqlServer.dll │ │ │ ├── EntityFramework.SqlServer.xml │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ │ └── net45 │ │ │ ├── EntityFramework.SqlServer.dll │ │ │ ├── EntityFramework.SqlServer.xml │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ └── tools │ │ ├── EntityFramework.PowerShell.Utility.dll │ │ ├── EntityFramework.PowerShell.dll │ │ ├── EntityFramework.psd1 │ │ ├── EntityFramework.psm1 │ │ ├── about_EntityFramework.help.txt │ │ ├── init.ps1 │ │ ├── install.ps1 │ │ └── migrate.exe ├── Microsoft.Win32.Primitives.4.0.1 │ ├── Microsoft.Win32.Primitives.4.0.1.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── Microsoft.Win32.Primitives.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net46 │ │ └── Microsoft.Win32.Primitives.dll │ │ ├── netstandard1.3 │ │ ├── Microsoft.Win32.Primitives.dll │ │ ├── Microsoft.Win32.Primitives.xml │ │ ├── de │ │ │ └── Microsoft.Win32.Primitives.xml │ │ ├── es │ │ │ └── Microsoft.Win32.Primitives.xml │ │ ├── fr │ │ │ └── Microsoft.Win32.Primitives.xml │ │ ├── it │ │ │ └── Microsoft.Win32.Primitives.xml │ │ ├── ja │ │ │ └── Microsoft.Win32.Primitives.xml │ │ ├── ko │ │ │ └── Microsoft.Win32.Primitives.xml │ │ ├── ru │ │ │ └── Microsoft.Win32.Primitives.xml │ │ ├── zh-hans │ │ │ └── Microsoft.Win32.Primitives.xml │ │ └── zh-hant │ │ │ └── Microsoft.Win32.Primitives.xml │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ ├── Newtonsoft.Json.9.0.1 │ ├── Newtonsoft.Json.9.0.1.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── tools │ │ └── install.ps1 ├── System.ComponentModel.Annotations.4.1.0 │ ├── System.ComponentModel.Annotations.4.1.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── net461 │ │ │ └── System.ComponentModel.Annotations.dll │ │ ├── netcore50 │ │ │ └── System.ComponentModel.Annotations.dll │ │ ├── netstandard1.4 │ │ │ └── System.ComponentModel.Annotations.dll │ │ ├── portable-net45+win8 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net45 │ │ └── _._ │ │ ├── net461 │ │ └── System.ComponentModel.Annotations.dll │ │ ├── netcore50 │ │ ├── System.ComponentModel.Annotations.dll │ │ ├── System.ComponentModel.Annotations.xml │ │ ├── de │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── es │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── fr │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── it │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ja │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ko │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ru │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── zh-hans │ │ │ └── System.ComponentModel.Annotations.xml │ │ └── zh-hant │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── netstandard1.1 │ │ ├── System.ComponentModel.Annotations.dll │ │ ├── System.ComponentModel.Annotations.xml │ │ ├── de │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── es │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── fr │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── it │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ja │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ko │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ru │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── zh-hans │ │ │ └── System.ComponentModel.Annotations.xml │ │ └── zh-hant │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── netstandard1.3 │ │ ├── System.ComponentModel.Annotations.dll │ │ ├── System.ComponentModel.Annotations.xml │ │ ├── de │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── es │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── fr │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── it │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ja │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ko │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ru │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── zh-hans │ │ │ └── System.ComponentModel.Annotations.xml │ │ └── zh-hant │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── netstandard1.4 │ │ ├── System.ComponentModel.Annotations.dll │ │ ├── System.ComponentModel.Annotations.xml │ │ ├── de │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── es │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── fr │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── it │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ja │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ko │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── ru │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── zh-hans │ │ │ └── System.ComponentModel.Annotations.xml │ │ └── zh-hant │ │ │ └── System.ComponentModel.Annotations.xml │ │ ├── portable-net45+win8 │ │ └── _._ │ │ ├── win8 │ │ └── _._ │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ ├── System.Console.4.0.0 │ ├── System.Console.4.0.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Console.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net46 │ │ └── System.Console.dll │ │ ├── netstandard1.3 │ │ ├── System.Console.dll │ │ ├── System.Console.xml │ │ ├── de │ │ │ └── System.Console.xml │ │ ├── es │ │ │ └── System.Console.xml │ │ ├── fr │ │ │ └── System.Console.xml │ │ ├── it │ │ │ └── System.Console.xml │ │ ├── ja │ │ │ └── System.Console.xml │ │ ├── ko │ │ │ └── System.Console.xml │ │ ├── ru │ │ │ └── System.Console.xml │ │ ├── zh-hans │ │ │ └── System.Console.xml │ │ └── zh-hant │ │ │ └── System.Console.xml │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ ├── System.Diagnostics.DiagnosticSource.4.0.0 │ ├── System.Diagnostics.DiagnosticSource.4.0.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ └── lib │ │ ├── net46 │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ └── System.Diagnostics.DiagnosticSource.xml │ │ ├── netstandard1.1 │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ └── System.Diagnostics.DiagnosticSource.xml │ │ ├── netstandard1.3 │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ └── System.Diagnostics.DiagnosticSource.xml │ │ └── portable-net45+win8+wpa81 │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ └── System.Diagnostics.DiagnosticSource.xml ├── System.Diagnostics.TraceSource.4.0.0 │ ├── System.Diagnostics.TraceSource.4.0.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Diagnostics.TraceSource.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Diagnostics.TraceSource.dll │ │ ├── netstandard1.3 │ │ │ ├── System.Diagnostics.TraceSource.dll │ │ │ ├── System.Diagnostics.TraceSource.xml │ │ │ ├── de │ │ │ │ └── System.Diagnostics.TraceSource.xml │ │ │ ├── es │ │ │ │ └── System.Diagnostics.TraceSource.xml │ │ │ ├── fr │ │ │ │ └── System.Diagnostics.TraceSource.xml │ │ │ ├── it │ │ │ │ └── System.Diagnostics.TraceSource.xml │ │ │ ├── ja │ │ │ │ └── System.Diagnostics.TraceSource.xml │ │ │ ├── ko │ │ │ │ └── System.Diagnostics.TraceSource.xml │ │ │ ├── ru │ │ │ │ └── System.Diagnostics.TraceSource.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Diagnostics.TraceSource.xml │ │ │ └── zh-hant │ │ │ │ └── System.Diagnostics.TraceSource.xml │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.3 │ │ │ └── System.Diagnostics.TraceSource.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Diagnostics.TraceSource.dll │ │ └── netstandard1.3 │ │ └── System.Diagnostics.TraceSource.dll ├── System.Net.Http.4.1.0 │ ├── System.Net.Http.4.1.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── Xamarinmac20 │ │ │ └── _._ │ │ ├── monoandroid10 │ │ │ └── _._ │ │ ├── monotouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Net.Http.dll │ │ ├── portable-net45+win8+wpa81 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── Xamarinmac20 │ │ │ └── _._ │ │ ├── monoandroid10 │ │ │ └── _._ │ │ ├── monotouch10 │ │ │ └── _._ │ │ ├── net45 │ │ │ └── _._ │ │ ├── net46 │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.Net.Http.xml │ │ │ ├── de │ │ │ │ └── System.Net.Http.xml │ │ │ ├── es │ │ │ │ └── System.Net.Http.xml │ │ │ ├── fr │ │ │ │ └── System.Net.Http.xml │ │ │ ├── it │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ja │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ko │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ru │ │ │ │ └── System.Net.Http.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Net.Http.xml │ │ │ └── zh-hant │ │ │ │ └── System.Net.Http.xml │ │ ├── netcore50 │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.Net.Http.xml │ │ │ ├── de │ │ │ │ └── System.Net.Http.xml │ │ │ ├── es │ │ │ │ └── System.Net.Http.xml │ │ │ ├── fr │ │ │ │ └── System.Net.Http.xml │ │ │ ├── it │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ja │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ko │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ru │ │ │ │ └── System.Net.Http.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Net.Http.xml │ │ │ └── zh-hant │ │ │ │ └── System.Net.Http.xml │ │ ├── netstandard1.1 │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.Net.Http.xml │ │ │ ├── de │ │ │ │ └── System.Net.Http.xml │ │ │ ├── es │ │ │ │ └── System.Net.Http.xml │ │ │ ├── fr │ │ │ │ └── System.Net.Http.xml │ │ │ ├── it │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ja │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ko │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ru │ │ │ │ └── System.Net.Http.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Net.Http.xml │ │ │ └── zh-hant │ │ │ │ └── System.Net.Http.xml │ │ ├── netstandard1.3 │ │ │ ├── System.Net.Http.dll │ │ │ ├── System.Net.Http.xml │ │ │ ├── de │ │ │ │ └── System.Net.Http.xml │ │ │ ├── es │ │ │ │ └── System.Net.Http.xml │ │ │ ├── fr │ │ │ │ └── System.Net.Http.xml │ │ │ ├── it │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ja │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ko │ │ │ │ └── System.Net.Http.xml │ │ │ ├── ru │ │ │ │ └── System.Net.Http.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Net.Http.xml │ │ │ └── zh-hant │ │ │ │ └── System.Net.Http.xml │ │ ├── portable-net45+win8+wpa81 │ │ │ └── _._ │ │ ├── win8 │ │ │ └── _._ │ │ ├── wpa81 │ │ │ └── _._ │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.6 │ │ │ └── System.Net.Http.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Net.Http.dll │ │ ├── netcore50 │ │ └── System.Net.Http.dll │ │ └── netstandard1.3 │ │ └── System.Net.Http.dll ├── System.Reflection.TypeExtensions.4.1.0 │ ├── System.Reflection.TypeExtensions.4.1.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Reflection.TypeExtensions.dll │ │ ├── net462 │ │ │ └── System.Reflection.TypeExtensions.dll │ │ ├── netcore50 │ │ │ └── System.Reflection.TypeExtensions.dll │ │ ├── netstandard1.5 │ │ │ └── System.Reflection.TypeExtensions.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Reflection.TypeExtensions.dll │ │ ├── net462 │ │ │ └── System.Reflection.TypeExtensions.dll │ │ ├── netstandard1.3 │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ ├── System.Reflection.TypeExtensions.xml │ │ │ ├── de │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── es │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── fr │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── it │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── ja │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── ko │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── ru │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ └── zh-hant │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ ├── netstandard1.5 │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ ├── System.Reflection.TypeExtensions.xml │ │ │ ├── de │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── es │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── fr │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── it │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── ja │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── ko │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── ru │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ │ └── zh-hant │ │ │ │ └── System.Reflection.TypeExtensions.xml │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ └── aot │ │ └── lib │ │ └── netcore50 │ │ └── System.Reflection.TypeExtensions.dll ├── System.Security.Cryptography.Algorithms.4.2.0 │ ├── System.Security.Cryptography.Algorithms.4.2.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net461 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net463 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net461 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net463 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netstandard1.3 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netstandard1.4 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netstandard1.6 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.6 │ │ │ └── System.Security.Cryptography.Algorithms.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net461 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── net463 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ ├── netcore50 │ │ └── System.Security.Cryptography.Algorithms.dll │ │ └── netstandard1.6 │ │ └── System.Security.Cryptography.Algorithms.dll ├── System.Security.Cryptography.Encoding.4.0.0 │ ├── System.Security.Cryptography.Encoding.4.0.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Encoding.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ ├── ref │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Encoding.dll │ │ ├── netstandard1.3 │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ ├── System.Security.Cryptography.Encoding.xml │ │ │ ├── de │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── es │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── fr │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── it │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── ja │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── ko │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── ru │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ ├── zh-hans │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ │ └── zh-hant │ │ │ │ └── System.Security.Cryptography.Encoding.xml │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ └── netstandard1.3 │ │ │ └── System.Security.Cryptography.Encoding.dll │ │ └── win │ │ └── lib │ │ ├── net46 │ │ └── System.Security.Cryptography.Encoding.dll │ │ └── netstandard1.3 │ │ └── System.Security.Cryptography.Encoding.dll ├── System.Security.Cryptography.Primitives.4.0.0 │ ├── System.Security.Cryptography.Primitives.4.0.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── netstandard1.3 │ │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net46 │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── netstandard1.3 │ │ └── System.Security.Cryptography.Primitives.dll │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ └── System.Security.Cryptography.X509Certificates.4.1.0 │ ├── System.Security.Cryptography.X509Certificates.4.1.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ ├── ref │ ├── MonoAndroid10 │ │ └── _._ │ ├── MonoTouch10 │ │ └── _._ │ ├── net46 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netstandard1.3 │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Cryptography.X509Certificates.xml │ │ ├── de │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── es │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── fr │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── it │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ja │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ko │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ru │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── zh-hans │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ └── zh-hant │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ ├── netstandard1.4 │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Cryptography.X509Certificates.xml │ │ ├── de │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── es │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── fr │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── it │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ja │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ko │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── ru │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ ├── zh-hans │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ │ └── zh-hant │ │ │ └── System.Security.Cryptography.X509Certificates.xml │ ├── xamarinios10 │ │ └── _._ │ ├── xamarinmac20 │ │ └── _._ │ ├── xamarintvos10 │ │ └── _._ │ └── xamarinwatchos10 │ │ └── _._ │ └── runtimes │ ├── unix │ └── lib │ │ └── netstandard1.6 │ │ └── System.Security.Cryptography.X509Certificates.dll │ └── win │ └── lib │ ├── net46 │ └── System.Security.Cryptography.X509Certificates.dll │ ├── net461 │ └── System.Security.Cryptography.X509Certificates.dll │ ├── netcore50 │ └── System.Security.Cryptography.X509Certificates.dll │ └── netstandard1.6 │ └── System.Security.Cryptography.X509Certificates.dll ├── samples ├── ConsoleElasticsearchCrudExample │ ├── App.config │ ├── ConsoleElasticsearchCrudExample.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Skill.cs │ ├── SkillElasticSearchMapping.cs │ ├── TestData.cs │ └── packages.config ├── Damienbod.AnimalProvider │ ├── Animal.cs │ ├── AnimalToLowerExampleElasticSearchMapping.cs │ ├── Damienbod.AnimalProvider.csproj │ ├── ElasticsearchCrudProvider.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── DataTransferEF_SQLToElasticsearch │ ├── App.config │ ├── DataTransferEF_SQLToElasticsearch.csproj │ ├── ExampleReindexChildDocuments │ │ ├── AddressReindexConfiguration.cs │ │ ├── Reindexer.cs │ │ └── StateProvinceReindexConfiguration.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Readme.txt │ ├── Repo.cs │ ├── SQLDomainModel │ │ ├── Address.cs │ │ ├── CountryRegion.cs │ │ ├── EmailAddress.cs │ │ ├── Password.cs │ │ ├── Person.cs │ │ ├── SQLDataModel.cs │ │ └── StateProvince.cs │ └── packages.config └── SearchComponent │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SearchComponent.xproj │ ├── SearchProvider │ ├── IPersonCitySearchProvider.cs │ ├── PersonCity.cs │ ├── PersonCityMapping.cs │ ├── PersonCityMappingDto.cs │ └── PersonCitySearchProvider.cs │ └── project.json └── src ├── ElasticsearchCRUD.Integration.Test ├── AggregationTests │ ├── FilterBucketAggregationAndMissingBucketAggregationTests.cs │ ├── GeohashGridBucketAggregationTests.cs │ ├── GlobalBucketAggregationTests.cs │ ├── HistogramBucketAggregationTests.cs │ ├── RangesAggregationTests.cs │ ├── ScriptedMetricAggregationTests.cs │ ├── SearchAggStructureTests.cs │ ├── SearchAggTest.cs │ ├── SetupSearchAgg.cs │ ├── SignificantTermsBucketAggregationTests.cs │ ├── TermsAggregationTests.cs │ └── TopHitsAggregationTests.cs ├── AliasElasticsearchCrudTests.cs ├── AnalysisSettingsTests.cs ├── AnalysisTests.cs ├── CoreTypeMappingTests.cs ├── CreateIndexTest.cs ├── DefaultElasticsearchCRUDTests.cs ├── ElasticsearchCRUD.Integration.Test.xproj ├── ExistsTests.cs ├── GeoPointAndGeoShapeTests.cs ├── GlobalApiTestsSearchCountTests.cs ├── JsonSerializeDeserializeTests.cs ├── MappingChildParentRoutingTests.cs ├── MappingTests.cs ├── MappingTypeTests.cs ├── OneToN │ ├── ComplexRelationsTests.cs │ ├── DocumentsWithChildDocumentsTestNotAllowed.cs │ ├── NestedArraysTestsWithFiltersAndQueriesAndAggregations.cs │ ├── OneToNEntitiesSaveWithChildDocumentsTest.cs │ ├── OneToNEntitiesSaveWithChildDocumentsTestWithRouting.cs │ ├── OneToNNestedElasticsearchCrudTests.cs │ ├── SkillParentCollection.cs │ ├── SkillTestEntityElasticSearchMapping.cs │ └── SpecialMappingElasticsearchCRUDTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Readme.txt ├── SearchCreateScanAndScrollTests.cs ├── SearchHighlightAndRescoreTests.cs ├── SearchTests │ ├── SearchQueryFilterFilteredStructureTests.cs │ ├── SearchQueryFilterTests.cs │ ├── SearchQueryFilterTestsMoreLikeThis.cs │ ├── SearchQueryFilterTestsOneToNParentChild.cs │ ├── SearchQueryQueryChidrenBucketAggregationTests.cs │ ├── SearchQueryQueryCommonTermsTests.cs │ ├── SearchQueryQueryFunctionScoreTest.cs │ ├── SearchQueryQueryFuzzyTests.cs │ ├── SearchQueryQueryMatchTests.cs │ ├── SearchQueryQuerySpanTests.cs │ ├── SearchQueryQueryStringQueryTest.cs │ ├── SearchQueryQueryTests.cs │ ├── SearchTest.cs │ └── SetupSearch.cs ├── TestEntities.cs ├── WarmerTests.cs ├── project.json └── xunit.runner.json ├── ElasticsearchCRUDNUnit.Integration.Test ├── AggregationTests │ ├── FilterBucketAggregationAndMissingBucketAggregationTests.cs │ ├── GeohashGridBucketAggregationTests.cs │ ├── GlobalBucketAggregationTests.cs │ ├── HistogramBucketAggregationTests.cs │ ├── RangesAggregationTests.cs │ ├── ScriptedMetricAggregationTests.cs │ ├── SearchAggStructureTests.cs │ ├── SearchAggTest.cs │ ├── SetupSearchAgg.cs │ ├── SignificantTermsBucketAggregationTests.cs │ ├── TermsAggregationTests.cs │ └── TopHitsAggregationTests.cs ├── AliasElasticsearchCrudTests.cs ├── AnalysisSettingsTests.cs ├── AnalysisTests.cs ├── CoreTypeMappingTests.cs ├── CreateIndexTest.cs ├── DefaultElasticsearchCRUDTests.cs ├── ElasticsearchCRUDNUnit.Integration.Test.csproj ├── ExistsTests.cs ├── GeoPointAndGeoShapeTests.cs ├── GlobalApiTestsSearchCountTests.cs ├── MappingChildParentRoutingTests.cs ├── MappingTests.cs ├── MappingTypeTests.cs ├── OneToN │ ├── ComplexRelationsTests.cs │ ├── DocumentsWithChildDocumentsTestNotAllowed.cs │ ├── NestedArraysTestsWithFiltersAndQueriesAndAggregations.cs │ ├── OneToNEntitiesSaveWithChildDocumentsTest.cs │ ├── OneToNEntitiesSaveWithChildDocumentsTestWithRouting.cs │ ├── OneToNNestedElasticsearchCrudTests.cs │ ├── SkillParentCollection.cs │ ├── SkillTestEntityElasticSearchMapping.cs │ └── SpecialMappingElasticsearchCRUDTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Readme.txt ├── SearchCreateScanAndScrollTests.cs ├── SearchHighlightAndRescoreTests.cs ├── SearchTests │ ├── SearchQueryFilterFilteredStructureTests.cs │ ├── SearchQueryFilterTests.cs │ ├── SearchQueryFilterTestsMoreLikeThis.cs │ ├── SearchQueryFilterTestsOneToNParentChild.cs │ ├── SearchQueryQueryChidrenBucketAggregationTests.cs │ ├── SearchQueryQueryCommonTermsTests.cs │ ├── SearchQueryQueryFunctionScoreTest.cs │ ├── SearchQueryQueryFuzzyTests.cs │ ├── SearchQueryQueryMatchTests.cs │ ├── SearchQueryQuerySpanTests.cs │ ├── SearchQueryQueryStringQueryTest.cs │ ├── SearchQueryQueryTests.cs │ ├── SearchTest.cs │ └── SetupSearch.cs ├── TestEntities.cs ├── WarmerTests.cs └── packages.config ├── ElasticsearchCrud ├── ContentExists │ ├── ElasticsearchContextExists.cs │ └── Exists.cs ├── ContextAddDeleteUpdate │ ├── CoreTypeAttributes │ │ ├── ElasticsearchBinary.cs │ │ ├── ElasticsearchBoolean.cs │ │ ├── ElasticsearchByte.cs │ │ ├── ElasticsearchCoreTypes.cs │ │ ├── ElasticsearchDate.cs │ │ ├── ElasticsearchDouble.cs │ │ ├── ElasticsearchFloat.cs │ │ ├── ElasticsearchGeoPoint.cs │ │ ├── ElasticsearchGeoShape.cs │ │ ├── ElasticsearchGeoTypeAttribute.cs │ │ ├── ElasticsearchIdAttribute.cs │ │ ├── ElasticsearchInteger.cs │ │ ├── ElasticsearchLong.cs │ │ ├── ElasticsearchNestedAttribute.cs │ │ ├── ElasticsearchNumber.cs │ │ ├── ElasticsearchShort.cs │ │ ├── ElasticsearchString.cs │ │ └── Fields.cs │ ├── ElasticsearchContextAddDeleteUpdate.cs │ ├── ElasticsearchContextIndexMapping.cs │ ├── ElasticsearchSerializer.cs │ ├── IndexMappings.cs │ └── IndexModel │ │ ├── ElasticSerializationResult.cs │ │ ├── MappingCommand.cs │ │ ├── MappingModel │ │ ├── MappingAll.cs │ │ ├── MappingAnalyzer.cs │ │ ├── MappingDefinition.cs │ │ └── MappingSource.cs │ │ ├── OptimizeParameters.cs │ │ ├── OptimizeResult.cs │ │ ├── RoutingDefinition.cs │ │ └── SettingsModel │ │ ├── Analysis.cs │ │ ├── AnalysisAnalyzer.cs │ │ ├── AnalysisCharFilter.cs │ │ ├── AnalysisFilter.cs │ │ ├── AnalysisTokenizer.cs │ │ ├── Analyzers │ │ ├── AnalyzerBase.cs │ │ ├── BaseStopAnalyzer.cs │ │ ├── CustomAnalyzer.cs │ │ ├── LanguageAnalyzer.cs │ │ ├── PatternAnalyzer.cs │ │ ├── SnowballAnalyzer.cs │ │ ├── StandardAnaylzer.cs │ │ └── StopAnalyzer.cs │ │ ├── CharFilters │ │ ├── AnalysisCharFilterBase.cs │ │ ├── MappingCharFilter.cs │ │ └── PatternReplaceCharFilter.cs │ │ ├── Filters │ │ ├── AnalysisFilterBase.cs │ │ ├── AsciifoldingTokenFilter.cs │ │ ├── CjkBigramTokenFilter.cs │ │ ├── CommonGramsFilter.cs │ │ ├── CompoundWordTokenFilter.cs │ │ ├── DelimitedPayloadFilterTokenFilter.cs │ │ ├── EdgeNGramTokenFilter.cs │ │ ├── ElisionTokenFilter.cs │ │ ├── HunspellTokenFilter.cs │ │ ├── IcuCollationTokenFilter.cs │ │ ├── IcuFoldingTokenFilter.cs │ │ ├── KeepTokenFilter.cs │ │ ├── KeepTypesTokenFilter.cs │ │ ├── KeywordMarkerTokenFilter.cs │ │ ├── LengthTokenFilter.cs │ │ ├── LimitTokenFilter.cs │ │ ├── LowercaseTokenFilter.cs │ │ ├── NGramTokenFilter.cs │ │ ├── PatternCaptureTokenFilter.cs │ │ ├── PatternReplaceTokenFilter.cs │ │ ├── PhoneticTokenFilter.cs │ │ ├── ShingleTokenFilter.cs │ │ ├── SnowballTokenFilter.cs │ │ ├── StemmerOverrideTokenFilter.cs │ │ ├── StemmerTokenFilter.cs │ │ ├── StopTokenFilter.cs │ │ ├── SynonymTokenFilter.cs │ │ ├── TruncateTokenFilter.cs │ │ ├── UniqueTokenFilter.cs │ │ └── WordDelimiterTokenFilter.cs │ │ ├── IndexAlias.cs │ │ ├── IndexAliases.cs │ │ ├── IndexDefinition.cs │ │ ├── IndexSettings.cs │ │ ├── IndexUpdateSettings.cs │ │ ├── IndexWarmer.cs │ │ ├── IndexWarmers.cs │ │ ├── Similarities.cs │ │ ├── SimilarityCustom │ │ ├── Bm25Similarity.cs │ │ ├── DefaultSimilarity.cs │ │ ├── DfrSimilarity.cs │ │ ├── IbSimilarity.cs │ │ ├── LmDirichletSimilarity.cs │ │ ├── LmJelinekMercerSimilarity.cs │ │ └── SimilarityBase.cs │ │ └── Tokenizers │ │ ├── AnalysisTokenizerBase.cs │ │ ├── BaseNGramTokenizer.cs │ │ ├── BaseTokenizer.cs │ │ ├── ClassicTokenizer.cs │ │ ├── EdgeNGramTokenizer.cs │ │ ├── KeywordTokenizer.cs │ │ ├── NGramTokenizer.cs │ │ ├── PathHierarchyTokenizer.cs │ │ ├── PatternTokenizer.cs │ │ ├── StandardTokenizer.cs │ │ └── UaxUrlEmailTokenizer.cs ├── ContextAlias │ ├── AliasModel │ │ ├── AliasAction.cs │ │ ├── AliasAddParameters.cs │ │ ├── AliasBaseParameters.cs │ │ ├── AliasParameters.cs │ │ └── AliasRemoveParameters.cs │ └── ElasticsearchContextAlias.cs ├── ContextClearCache │ └── ElasticsearchContextClearCache.cs ├── ContextCount │ └── ElasticsearchContextCount.cs ├── ContextDeleteByQuery │ └── ElasticsearchContextDeleteByQuery.cs ├── ContextGet │ ├── ElasticsearchContextGet.cs │ └── InternalGet.cs ├── ContextSearch │ ├── ElasticsearchContextSearch.cs │ ├── ScanAndScrollConfiguration.cs │ ├── SearchModel │ │ ├── AggModel │ │ │ ├── Aggregations.cs │ │ │ ├── Buckets │ │ │ │ ├── BaseBucket.cs │ │ │ │ ├── Bucket.cs │ │ │ │ ├── DateHistogramBucket.cs │ │ │ │ ├── GeoDistanceRangeBucket.cs │ │ │ │ ├── NamedBucket.cs │ │ │ │ ├── RangeBucket.cs │ │ │ │ └── SignificantTermsBucket.cs │ │ │ ├── DateHistogramBucketAggregationsResult.cs │ │ │ ├── ExtendedStatsMetricAggregationsResult.cs │ │ │ ├── FiltersBucketAggregationsResult.cs │ │ │ ├── FiltersNamedBucketAggregationsResult.cs │ │ │ ├── GeoBoundsMetricAggregationsResult.cs │ │ │ ├── GeoDistanceBucketAggregationsResult.cs │ │ │ ├── GeohashGridBucketAggregationsResult.cs │ │ │ ├── GlobalBucketAggregationsResult.cs │ │ │ ├── HistogramBucketAggregationsResult.cs │ │ │ ├── HistogramNamedBucketAggregationsResult.cs │ │ │ ├── MissingBucketAggregationsResult.cs │ │ │ ├── NestedBucketAggregationsResult.cs │ │ │ ├── PercentileRanksMetricAggregationsResult.cs │ │ │ ├── PercentilesMetricAggregationsResult.cs │ │ │ ├── RangesBucketAggregationsResult.cs │ │ │ ├── RangesNamedBucketAggregationsResult.cs │ │ │ ├── ReverseNestedBucketAggregationsResult.cs │ │ │ ├── SignificantTermsBucketAggregationsResult.cs │ │ │ ├── SingleBucketAggregationsResult.cs │ │ │ ├── StatsMetricAggregationsResult.cs │ │ │ ├── StdDeviationBounds.cs │ │ │ ├── TermsBucketAggregationsResult.cs │ │ │ └── TopHitsMetricAggregationsResult.cs │ │ ├── Hit.cs │ │ ├── Hits.cs │ │ ├── SeachType.cs │ │ ├── SearchResult.cs │ │ └── SearchUrlParameters.cs │ └── SearchRequest.cs ├── ContextWarmers │ ├── ElasticsearchContextWarmer.cs │ └── Warmer.cs ├── ElasticSearchContext.cs ├── ElasticSearchMappingResolver.cs ├── ElasticsearchCrud.xproj ├── ElasticsearchCrud.xproj.user ├── ElasticsearchCrudException.cs ├── ElasticsearchCrudJsonWriter.cs ├── ElasticsearchCrudReindex.cs ├── ElasticsearchMapping.cs ├── ElasticsearchSerializerConfiguration.cs ├── IElasticSearchMappingResolver.cs ├── Model │ ├── DateTimeFormats.cs │ ├── DefaultAnalyzers.cs │ ├── DefaultCharFilters.cs │ ├── DefaultSimilarities.cs │ ├── DefaultTokenFilters.cs │ ├── DefaultTokenizers.cs │ ├── EntityContextInfo.cs │ ├── GeoModel │ │ ├── DefaultGeoShapes.cs │ │ ├── DistanceType.cs │ │ ├── DistanceUnitEnum.cs │ │ ├── GeoPoint.cs │ │ ├── GeoShapeCircle.cs │ │ ├── GeoShapeEnvelope.cs │ │ ├── GeoShapeGeometryCollection.cs │ │ ├── GeoShapeGeometryCollectionGeometriesConverter.cs │ │ ├── GeoShapeLineString.cs │ │ ├── GeoShapeMultiLineString.cs │ │ ├── GeoShapeMultiPoint.cs │ │ ├── GeoShapeMultiPolygon.cs │ │ ├── GeoShapePoint.cs │ │ ├── GeoShapePolygon.cs │ │ └── GeoType.cs │ ├── GetResult.cs │ ├── IndexMapping.cs │ ├── IndexTypeDescription.cs │ ├── IndexTypeMapping.cs │ ├── LanguageAnalyzers.cs │ ├── ResultDetails.cs │ ├── ResultDetailsCount.cs │ ├── SearchModel │ │ ├── Aggregations │ │ │ ├── AvgMetricAggregation.cs │ │ │ ├── BaseBucketAggregation.cs │ │ │ ├── BaseMetricAggregation.cs │ │ │ ├── CardinalityMetricAggregation.cs │ │ │ ├── ChidrenBucketAggregation.cs │ │ │ ├── DateHistogramBucketAggregation.cs │ │ │ ├── DateRangeBucketAggregation.cs │ │ │ ├── ExcludeExpression.cs │ │ │ ├── ExtendedStatsMetricAggregation.cs │ │ │ ├── FilterBucketAggregation.cs │ │ │ ├── FiltersBucketAggregation.cs │ │ │ ├── FiltersNamedBucketAggregation.cs │ │ │ ├── GeoBoundsMetricAggregation.cs │ │ │ ├── GeoDistanceBucketAggregation.cs │ │ │ ├── GeohashGridBucketAggregation.cs │ │ │ ├── GlobalBucketAggregation.cs │ │ │ ├── HistogramBucketAggregation.cs │ │ │ ├── IncludeExcludeBaseExpression.cs │ │ │ ├── IncludeExcludeExpressionFlags.cs │ │ │ ├── IncludeExpression.cs │ │ │ ├── MaxMetricAggregation.cs │ │ │ ├── MinMetricAggregation.cs │ │ │ ├── MissingBucketAggregation.cs │ │ │ ├── NestedBucketAggregation.cs │ │ │ ├── OrderAgg.cs │ │ │ ├── PercentileRanksMetricAggregation.cs │ │ │ ├── PercentilesMetricAggregation.cs │ │ │ ├── RangeBucketAggregation.cs │ │ │ ├── RangeParam │ │ │ │ ├── FromRangeAggregationParameter.cs │ │ │ │ ├── RangeAggregationParameter.cs │ │ │ │ ├── ToFromRangeAggregationParameter.cs │ │ │ │ └── ToRangeAggregationParameter.cs │ │ │ ├── ReverseNestedBucketAggregation.cs │ │ │ ├── ScriptedMetricAggregation.cs │ │ │ ├── SignificantTermsBucketAggregation.cs │ │ │ ├── StatsMetricAggregation.cs │ │ │ ├── SumMetricAggregation.cs │ │ │ ├── TermsBucketAggregation.cs │ │ │ ├── TopHitsMetricAggregation.cs │ │ │ └── ValueCountMetricAggregation.cs │ │ ├── Document.cs │ │ ├── Filter.cs │ │ ├── Filtered.cs │ │ ├── Filters │ │ │ ├── AndFilter.cs │ │ │ ├── BoolFilter.cs │ │ │ ├── ExistsFilter.cs │ │ │ ├── GeoBoundingBoxFilter.cs │ │ │ ├── GeoDistanceFilter.cs │ │ │ ├── GeoDistanceRangeFilter.cs │ │ │ ├── GeoPolygonFilter.cs │ │ │ ├── GeoShapeFilter.cs │ │ │ ├── GeoShapePreIndexedFilter.cs │ │ │ ├── GeohashCellFilter.cs │ │ │ ├── HasChildFilter.cs │ │ │ ├── HasParentFilter.cs │ │ │ ├── IdsFilter.cs │ │ │ ├── IndicesFilter.cs │ │ │ ├── LimitFilter.cs │ │ │ ├── MatchAllFilter.cs │ │ │ ├── MissingFilter.cs │ │ │ ├── NestedFilter.cs │ │ │ ├── NotFilter.cs │ │ │ ├── OrFilter.cs │ │ │ ├── PrefixFilter.cs │ │ │ ├── QueryFilter.cs │ │ │ ├── RangeFilter.cs │ │ │ ├── RegExpFilter.cs │ │ │ ├── ScriptFilter.cs │ │ │ ├── TermFilter.cs │ │ │ ├── TermsFilter.cs │ │ │ └── TypeFilter.cs │ │ ├── Highlight.cs │ │ ├── HighlightField.cs │ │ ├── IAggs.cs │ │ ├── IFilter.cs │ │ ├── IFilterHolder.cs │ │ ├── IQuery.cs │ │ ├── IQueryHolder.cs │ │ ├── InnerHits.cs │ │ ├── Queries │ │ │ ├── BoolQuery.cs │ │ │ ├── BoostingQuery.cs │ │ │ ├── CommonTermsQuery.cs │ │ │ ├── ConstantScoreQuery.cs │ │ │ ├── DisMaxQuery.cs │ │ │ ├── FunctionQuery │ │ │ │ ├── BaseScoreFunction.cs │ │ │ │ ├── DateTimeDecayBaseScoreFunction.cs │ │ │ │ ├── DecayBaseScoreFunction.cs │ │ │ │ ├── ExpDateTimePointFunction.cs │ │ │ │ ├── ExpGeoPointFunction.cs │ │ │ │ ├── ExpNumericFunction.cs │ │ │ │ ├── FieldValueFactorFunction.cs │ │ │ │ ├── FunctionScoreQuery.cs │ │ │ │ ├── FunctionScoreQueryBoostMode.cs │ │ │ │ ├── FunctionScoreQueryScoreMode.cs │ │ │ │ ├── GaussDateTimePointFunction.cs │ │ │ │ ├── GaussGeoPointFunction.cs │ │ │ │ ├── GaussNumericFunction.cs │ │ │ │ ├── GeoDecayBaseScoreFunction.cs │ │ │ │ ├── LinearDateTimePointFunction.cs │ │ │ │ ├── LinearGeoPointFunction.cs │ │ │ │ ├── LinearNumericFunction.cs │ │ │ │ ├── RandomScoreFunction.cs │ │ │ │ └── ScriptScoreFunction.cs │ │ │ ├── FuzzyQuery.cs │ │ │ ├── GeoShapeQuery.cs │ │ │ ├── HasChildQuery.cs │ │ │ ├── HasParentQuery.cs │ │ │ ├── ISpanQuery.cs │ │ │ ├── IdsQuery.cs │ │ │ ├── IndicesQuery.cs │ │ │ ├── MatchAllQuery.cs │ │ │ ├── MatchBase.cs │ │ │ ├── MatchPhasePrefixQuery.cs │ │ │ ├── MatchPhaseQuery.cs │ │ │ ├── MatchQuery.cs │ │ │ ├── MoreLikeThisQuery.cs │ │ │ ├── MultiMatchQuery.cs │ │ │ ├── NestedQuery.cs │ │ │ ├── PrefixQuery.cs │ │ │ ├── QueryDefaultOperator.cs │ │ │ ├── QueryStringQuery.cs │ │ │ ├── RangeQuery.cs │ │ │ ├── RegExpQuery.cs │ │ │ ├── ScoreMode.cs │ │ │ ├── SimpleQueryStringQuery.cs │ │ │ ├── SpanFirstQuery.cs │ │ │ ├── SpanMultiQuery.cs │ │ │ ├── SpanNearQuery.cs │ │ │ ├── SpanNotQuery.cs │ │ │ ├── SpanOrQuery.cs │ │ │ ├── SpanTermQuery.cs │ │ │ ├── TermQuery.cs │ │ │ ├── TermsQuery.cs │ │ │ └── WildcardQuery.cs │ │ ├── Query.cs │ │ ├── Rescore.cs │ │ ├── ScriptParameter.cs │ │ ├── Search.cs │ │ └── Sorting │ │ │ ├── ISort.cs │ │ │ ├── OrderEnum.cs │ │ │ ├── SortGeoDistance.cs │ │ │ ├── SortHolder.cs │ │ │ ├── SortScript.cs │ │ │ └── SortStandard.cs │ ├── Shards.cs │ └── Units │ │ ├── DistanceUnit.cs │ │ ├── DistanceUnitCentimeter.cs │ │ ├── DistanceUnitFeet.cs │ │ ├── DistanceUnitInch.cs │ │ ├── DistanceUnitKilometer.cs │ │ ├── DistanceUnitMeter.cs │ │ ├── DistanceUnitMiles.cs │ │ ├── DistanceUnitMillimeter.cs │ │ ├── DistanceUnitNauticalMile.cs │ │ ├── DistanceUnitYard.cs │ │ ├── TimeUnit.cs │ │ ├── TimeUnitDay.cs │ │ ├── TimeUnitHour.cs │ │ ├── TimeUnitMinute.cs │ │ ├── TimeUnitMonth.cs │ │ ├── TimeUnitSecond.cs │ │ ├── TimeUnitWeek.cs │ │ └── TimeUnitYear.cs ├── Tracing │ ├── ConsoleTraceProvider.cs │ ├── ITraceProvider.cs │ ├── NullTraceProvider.cs │ └── TraceProvider.cs ├── Utils │ ├── GlobalElasticsearchMapping.cs │ ├── JsonHelper.cs │ ├── MappingUtils.cs │ ├── ParameterCollection.cs │ └── SyncExecute.cs └── project.json └── ElasticsearchGermanAnalyzer ├── ElasticsearchGermanAnalyzer.xproj ├── ElasticsearchProvider.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs └── project.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/.gitignore -------------------------------------------------------------------------------- /DeleteLocalhostElasticsearch.ps1: -------------------------------------------------------------------------------- 1 | Invoke-WebRequest http://localhost:9200/* -Method delete | Out-Null 2 | -------------------------------------------------------------------------------- /ElasticsearchCrud.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/ElasticsearchCrud.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/README.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/global.json -------------------------------------------------------------------------------- /packages/ElasticsearchCrud.2.3.3.1-beta2/ElasticsearchCrud.2.3.3.1-beta2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/ElasticsearchCrud.2.3.3.1-beta2/ElasticsearchCrud.2.3.3.1-beta2.nupkg -------------------------------------------------------------------------------- /packages/ElasticsearchCrud.2.3.3.1-beta2/lib/netstandard1.4/ElasticsearchCrud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/ElasticsearchCrud.2.3.3.1-beta2/lib/netstandard1.4/ElasticsearchCrud.dll -------------------------------------------------------------------------------- /packages/ElasticsearchCrud.2.3.3.1/ElasticsearchCrud.2.3.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/ElasticsearchCrud.2.3.3.1/ElasticsearchCrud.2.3.3.1.nupkg -------------------------------------------------------------------------------- /packages/ElasticsearchCrud.2.3.3.1/lib/netstandard1.4/ElasticsearchCrud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/ElasticsearchCrud.2.3.3.1/lib/netstandard1.4/ElasticsearchCrud.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/EntityFramework.6.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/EntityFramework.6.1.2.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/content/App.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/content/App.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/content/Web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/content/Web.config.transform -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/lib/net40/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/lib/net40/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/lib/net40/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/lib/net40/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/lib/net45/EntityFramework.SqlServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/lib/net45/EntityFramework.SqlServer.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/lib/net45/EntityFramework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/lib/net45/EntityFramework.xml -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/tools/EntityFramework.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/tools/EntityFramework.psm1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/tools/about_EntityFramework.help.txt -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/tools/init.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/tools/install.ps1 -------------------------------------------------------------------------------- /packages/EntityFramework.6.1.2/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/EntityFramework.6.1.2/tools/migrate.exe -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/Microsoft.Win32.Primitives.4.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/Microsoft.Win32.Primitives.4.0.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/lib/net46/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/lib/net46/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/net46/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/net46/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/Microsoft.Win32.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/Microsoft.Win32.Primitives.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Microsoft.Win32.Primitives.4.0.1/ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Microsoft.Win32.Primitives.4.0.1/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/Newtonsoft.Json.9.0.1.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.9.0.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/Newtonsoft.Json.9.0.1/tools/install.ps1 -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/System.ComponentModel.Annotations.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.ComponentModel.Annotations.4.1.0/System.ComponentModel.Annotations.4.1.0.nupkg -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.ComponentModel.Annotations.4.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.ComponentModel.Annotations.4.1.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/lib/portable-net45+win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ref/portable-net45+win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.ComponentModel.Annotations.4.1.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/System.Console.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/System.Console.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/lib/net46/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/lib/net46/System.Console.dll -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/net46/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/net46/System.Console.dll -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/System.Console.dll -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/de/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/de/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/es/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/es/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/fr/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/fr/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/it/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/it/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/ja/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/ja/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/ko/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/ko/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/ru/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/ru/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/zh-hans/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/zh-hans/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/netstandard1.3/zh-hant/System.Console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Console.4.0.0/ref/netstandard1.3/zh-hant/System.Console.xml -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Console.4.0.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.0.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Diagnostics.DiagnosticSource.4.0.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Diagnostics.DiagnosticSource.4.0.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Diagnostics.DiagnosticSource.4.0.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/System.Diagnostics.TraceSource.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Diagnostics.TraceSource.4.0.0/System.Diagnostics.TraceSource.4.0.0.nupkg -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Diagnostics.TraceSource.4.0.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Diagnostics.TraceSource.4.0.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/lib/net46/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Diagnostics.TraceSource.4.0.0/lib/net46/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/ref/net46/System.Diagnostics.TraceSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Diagnostics.TraceSource.4.0.0/ref/net46/System.Diagnostics.TraceSource.dll -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Diagnostics.TraceSource.4.0.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/System.Net.Http.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/System.Net.Http.4.1.0.nupkg -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/Xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/monoandroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/monotouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/lib/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/Xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/monoandroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/monotouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/de/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/de/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/es/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/es/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/fr/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/fr/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/it/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/it/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/ja/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/ja/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/ko/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/ko/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/ru/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/ru/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/zh-hans/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/zh-hans/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/net46/zh-hant/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/net46/zh-hant/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/de/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/de/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/es/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/es/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/fr/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/fr/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/it/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/it/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/ja/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/ja/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/ko/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/ko/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/ru/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/ru/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/zh-hans/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/zh-hans/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netcore50/zh-hant/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netcore50/zh-hant/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/de/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/de/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/es/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/es/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/fr/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/fr/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/it/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/it/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/ja/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/ja/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/ko/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/ko/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/ru/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/ru/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/zh-hans/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/zh-hans/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.1/zh-hant/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.1/zh-hant/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/de/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/de/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/es/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/es/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/fr/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/fr/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/it/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/it/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/ja/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/ja/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/ko/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/ko/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/ru/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/ru/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/zh-hans/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/zh-hans/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/netstandard1.3/zh-hant/System.Net.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/ref/netstandard1.3/zh-hant/System.Net.Http.xml -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/portable-net45+win8+wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/win8/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/wpa81/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/runtimes/unix/lib/netstandard1.6/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/runtimes/unix/lib/netstandard1.6/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/runtimes/win/lib/net46/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/runtimes/win/lib/net46/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/runtimes/win/lib/netcore50/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/runtimes/win/lib/netcore50/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/System.Net.Http.4.1.0/runtimes/win/lib/netstandard1.3/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Net.Http.4.1.0/runtimes/win/lib/netstandard1.3/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/System.Reflection.TypeExtensions.4.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Reflection.TypeExtensions.4.1.0/System.Reflection.TypeExtensions.4.1.0.nupkg -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Reflection.TypeExtensions.4.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Reflection.TypeExtensions.4.1.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/lib/net46/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Reflection.TypeExtensions.4.1.0/lib/net46/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/lib/net462/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Reflection.TypeExtensions.4.1.0/lib/net462/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/ref/net46/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Reflection.TypeExtensions.4.1.0/ref/net46/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/ref/net462/System.Reflection.TypeExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Reflection.TypeExtensions.4.1.0/ref/net462/System.Reflection.TypeExtensions.dll -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Reflection.TypeExtensions.4.1.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Security.Cryptography.Algorithms.4.2.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Algorithms.4.2.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Security.Cryptography.Encoding.4.0.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Encoding.4.0.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Security.Cryptography.Primitives.4.0.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.Primitives.4.0.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/packages/System.Security.Cryptography.X509Certificates.4.1.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Security.Cryptography.X509Certificates.4.1.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/ConsoleElasticsearchCrudExample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/ConsoleElasticsearchCrudExample/App.config -------------------------------------------------------------------------------- /samples/ConsoleElasticsearchCrudExample/ConsoleElasticsearchCrudExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/ConsoleElasticsearchCrudExample/ConsoleElasticsearchCrudExample.csproj -------------------------------------------------------------------------------- /samples/ConsoleElasticsearchCrudExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/ConsoleElasticsearchCrudExample/Program.cs -------------------------------------------------------------------------------- /samples/ConsoleElasticsearchCrudExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/ConsoleElasticsearchCrudExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/ConsoleElasticsearchCrudExample/Skill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/ConsoleElasticsearchCrudExample/Skill.cs -------------------------------------------------------------------------------- /samples/ConsoleElasticsearchCrudExample/SkillElasticSearchMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/ConsoleElasticsearchCrudExample/SkillElasticSearchMapping.cs -------------------------------------------------------------------------------- /samples/ConsoleElasticsearchCrudExample/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/ConsoleElasticsearchCrudExample/TestData.cs -------------------------------------------------------------------------------- /samples/ConsoleElasticsearchCrudExample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/ConsoleElasticsearchCrudExample/packages.config -------------------------------------------------------------------------------- /samples/Damienbod.AnimalProvider/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/Damienbod.AnimalProvider/Animal.cs -------------------------------------------------------------------------------- /samples/Damienbod.AnimalProvider/AnimalToLowerExampleElasticSearchMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/Damienbod.AnimalProvider/AnimalToLowerExampleElasticSearchMapping.cs -------------------------------------------------------------------------------- /samples/Damienbod.AnimalProvider/Damienbod.AnimalProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/Damienbod.AnimalProvider/Damienbod.AnimalProvider.csproj -------------------------------------------------------------------------------- /samples/Damienbod.AnimalProvider/ElasticsearchCrudProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/Damienbod.AnimalProvider/ElasticsearchCrudProvider.cs -------------------------------------------------------------------------------- /samples/Damienbod.AnimalProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/Damienbod.AnimalProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Damienbod.AnimalProvider/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/Damienbod.AnimalProvider/app.config -------------------------------------------------------------------------------- /samples/Damienbod.AnimalProvider/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/Damienbod.AnimalProvider/packages.config -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/App.config -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/DataTransferEF_SQLToElasticsearch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/DataTransferEF_SQLToElasticsearch.csproj -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/ExampleReindexChildDocuments/Reindexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/ExampleReindexChildDocuments/Reindexer.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/Program.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/Readme.txt -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/Repo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/Repo.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/Address.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/CountryRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/CountryRegion.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/EmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/EmailAddress.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/Password.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/Password.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/Person.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/SQLDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/SQLDataModel.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/StateProvince.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/SQLDomainModel/StateProvince.cs -------------------------------------------------------------------------------- /samples/DataTransferEF_SQLToElasticsearch/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/DataTransferEF_SQLToElasticsearch/packages.config -------------------------------------------------------------------------------- /samples/SearchComponent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/SearchComponent/Program.cs -------------------------------------------------------------------------------- /samples/SearchComponent/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/SearchComponent/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/SearchComponent/SearchComponent.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/SearchComponent/SearchComponent.xproj -------------------------------------------------------------------------------- /samples/SearchComponent/SearchProvider/IPersonCitySearchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/SearchComponent/SearchProvider/IPersonCitySearchProvider.cs -------------------------------------------------------------------------------- /samples/SearchComponent/SearchProvider/PersonCity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/SearchComponent/SearchProvider/PersonCity.cs -------------------------------------------------------------------------------- /samples/SearchComponent/SearchProvider/PersonCityMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/SearchComponent/SearchProvider/PersonCityMapping.cs -------------------------------------------------------------------------------- /samples/SearchComponent/SearchProvider/PersonCityMappingDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/SearchComponent/SearchProvider/PersonCityMappingDto.cs -------------------------------------------------------------------------------- /samples/SearchComponent/SearchProvider/PersonCitySearchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/SearchComponent/SearchProvider/PersonCitySearchProvider.cs -------------------------------------------------------------------------------- /samples/SearchComponent/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/samples/SearchComponent/project.json -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/GeohashGridBucketAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/GeohashGridBucketAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/GlobalBucketAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/GlobalBucketAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/HistogramBucketAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/HistogramBucketAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/RangesAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/RangesAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/ScriptedMetricAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/ScriptedMetricAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/SearchAggStructureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/SearchAggStructureTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/SearchAggTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/SearchAggTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/SetupSearchAgg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/SetupSearchAgg.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/TermsAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/TermsAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AggregationTests/TopHitsAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AggregationTests/TopHitsAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AliasElasticsearchCrudTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AliasElasticsearchCrudTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AnalysisSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AnalysisSettingsTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/AnalysisTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/AnalysisTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/CoreTypeMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/CoreTypeMappingTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/CreateIndexTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/CreateIndexTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/DefaultElasticsearchCRUDTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/DefaultElasticsearchCRUDTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/ElasticsearchCRUD.Integration.Test.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/ElasticsearchCRUD.Integration.Test.xproj -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/ExistsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/ExistsTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/GeoPointAndGeoShapeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/GeoPointAndGeoShapeTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/GlobalApiTestsSearchCountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/GlobalApiTestsSearchCountTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/JsonSerializeDeserializeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/JsonSerializeDeserializeTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/MappingChildParentRoutingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/MappingChildParentRoutingTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/MappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/MappingTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/MappingTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/MappingTypeTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/OneToN/ComplexRelationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/OneToN/ComplexRelationsTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/OneToN/DocumentsWithChildDocumentsTestNotAllowed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/OneToN/DocumentsWithChildDocumentsTestNotAllowed.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/OneToN/OneToNEntitiesSaveWithChildDocumentsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/OneToN/OneToNEntitiesSaveWithChildDocumentsTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/OneToN/OneToNNestedElasticsearchCrudTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/OneToN/OneToNNestedElasticsearchCrudTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/OneToN/SkillParentCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/OneToN/SkillParentCollection.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/OneToN/SkillTestEntityElasticSearchMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/OneToN/SkillTestEntityElasticSearchMapping.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/OneToN/SpecialMappingElasticsearchCRUDTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/OneToN/SpecialMappingElasticsearchCRUDTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/Readme.txt -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchCreateScanAndScrollTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchCreateScanAndScrollTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchHighlightAndRescoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchHighlightAndRescoreTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryFilterFilteredStructureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryFilterFilteredStructureTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryFilterTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryFilterTestsMoreLikeThis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryFilterTestsMoreLikeThis.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryFilterTestsOneToNParentChild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryFilterTestsOneToNParentChild.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryCommonTermsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryCommonTermsTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryFunctionScoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryFunctionScoreTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryFuzzyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryFuzzyTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryMatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryMatchTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQuerySpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQuerySpanTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryStringQueryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryStringQueryTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchQueryQueryTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SearchTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/SearchTests/SetupSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/SearchTests/SetupSearch.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/TestEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/TestEntities.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/WarmerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/WarmerTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUD.Integration.Test/project.json -------------------------------------------------------------------------------- /src/ElasticsearchCRUD.Integration.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "xunit.diagnosticMessages": true 3 | } -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/GlobalBucketAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/GlobalBucketAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/HistogramBucketAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/HistogramBucketAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/RangesAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/RangesAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/SearchAggStructureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/SearchAggStructureTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/SearchAggTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/SearchAggTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/SetupSearchAgg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/SetupSearchAgg.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/TermsAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/TermsAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/TopHitsAggregationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AggregationTests/TopHitsAggregationTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AliasElasticsearchCrudTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AliasElasticsearchCrudTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AnalysisSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AnalysisSettingsTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/AnalysisTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/AnalysisTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/CoreTypeMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/CoreTypeMappingTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/CreateIndexTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/CreateIndexTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/DefaultElasticsearchCRUDTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/DefaultElasticsearchCRUDTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/ElasticsearchCRUDNUnit.Integration.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/ElasticsearchCRUDNUnit.Integration.Test.csproj -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/ExistsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/ExistsTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/GeoPointAndGeoShapeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/GeoPointAndGeoShapeTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/GlobalApiTestsSearchCountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/GlobalApiTestsSearchCountTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/MappingChildParentRoutingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/MappingChildParentRoutingTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/MappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/MappingTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/MappingTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/MappingTypeTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/ComplexRelationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/ComplexRelationsTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/OneToNNestedElasticsearchCrudTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/OneToNNestedElasticsearchCrudTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/SkillParentCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/SkillParentCollection.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/SkillTestEntityElasticSearchMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/SkillTestEntityElasticSearchMapping.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/SpecialMappingElasticsearchCRUDTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/OneToN/SpecialMappingElasticsearchCRUDTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/Readme.txt -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchCreateScanAndScrollTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchCreateScanAndScrollTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchHighlightAndRescoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchHighlightAndRescoreTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryFilterTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryCommonTermsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryCommonTermsTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryFunctionScoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryFunctionScoreTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryFuzzyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryFuzzyTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryMatchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryMatchTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQuerySpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQuerySpanTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryStringQueryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryStringQueryTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchQueryQueryTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SearchTest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SetupSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/SearchTests/SetupSearch.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/TestEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/TestEntities.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/WarmerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/WarmerTests.cs -------------------------------------------------------------------------------- /src/ElasticsearchCRUDNUnit.Integration.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCRUDNUnit.Integration.Test/packages.config -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContentExists/ElasticsearchContextExists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContentExists/ElasticsearchContextExists.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContentExists/Exists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContentExists/Exists.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchBinary.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchBoolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchBoolean.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchByte.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchCoreTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchCoreTypes.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchDate.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchDouble.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchFloat.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchGeoPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchGeoPoint.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchGeoShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchGeoShape.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchIdAttribute.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchInteger.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchLong.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchNumber.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchShort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchShort.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/ElasticsearchString.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/Fields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/CoreTypeAttributes/Fields.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/ElasticsearchContextAddDeleteUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/ElasticsearchContextAddDeleteUpdate.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/ElasticsearchContextIndexMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/ElasticsearchContextIndexMapping.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/ElasticsearchSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/ElasticsearchSerializer.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexMappings.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/ElasticSerializationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/ElasticSerializationResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingCommand.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingModel/MappingAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingModel/MappingAll.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingModel/MappingAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingModel/MappingAnalyzer.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingModel/MappingDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingModel/MappingDefinition.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingModel/MappingSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/MappingModel/MappingSource.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/OptimizeParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/OptimizeParameters.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/OptimizeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/OptimizeResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/RoutingDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/RoutingDefinition.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/Analysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/Analysis.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/AnalysisAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/AnalysisAnalyzer.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/AnalysisCharFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/AnalysisCharFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/AnalysisFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/AnalysisFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/AnalysisTokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/AnalysisTokenizer.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexAlias.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexAliases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexAliases.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexDefinition.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexSettings.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexUpdateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexUpdateSettings.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexWarmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexWarmer.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexWarmers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/IndexWarmers.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/Similarities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAddDeleteUpdate/IndexModel/SettingsModel/Similarities.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAlias/AliasModel/AliasAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAlias/AliasModel/AliasAction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAlias/AliasModel/AliasAddParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAlias/AliasModel/AliasAddParameters.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAlias/AliasModel/AliasBaseParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAlias/AliasModel/AliasBaseParameters.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAlias/AliasModel/AliasParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAlias/AliasModel/AliasParameters.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAlias/AliasModel/AliasRemoveParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAlias/AliasModel/AliasRemoveParameters.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextAlias/ElasticsearchContextAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextAlias/ElasticsearchContextAlias.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextClearCache/ElasticsearchContextClearCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextClearCache/ElasticsearchContextClearCache.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextCount/ElasticsearchContextCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextCount/ElasticsearchContextCount.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextDeleteByQuery/ElasticsearchContextDeleteByQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextDeleteByQuery/ElasticsearchContextDeleteByQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextGet/ElasticsearchContextGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextGet/ElasticsearchContextGet.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextGet/InternalGet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextGet/InternalGet.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/ElasticsearchContextSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/ElasticsearchContextSearch.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/ScanAndScrollConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/ScanAndScrollConfiguration.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Aggregations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Aggregations.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/BaseBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/BaseBucket.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/Bucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/Bucket.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/DateHistogramBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/DateHistogramBucket.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/GeoDistanceRangeBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/GeoDistanceRangeBucket.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/NamedBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/NamedBucket.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/RangeBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/RangeBucket.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/SignificantTermsBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/Buckets/SignificantTermsBucket.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/FiltersBucketAggregationsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/FiltersBucketAggregationsResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/GlobalBucketAggregationsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/GlobalBucketAggregationsResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/MissingBucketAggregationsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/MissingBucketAggregationsResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/NestedBucketAggregationsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/NestedBucketAggregationsResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/RangesBucketAggregationsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/RangesBucketAggregationsResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/SingleBucketAggregationsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/SingleBucketAggregationsResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/StatsMetricAggregationsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/StatsMetricAggregationsResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/StdDeviationBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/StdDeviationBounds.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/TermsBucketAggregationsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/TermsBucketAggregationsResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/TopHitsMetricAggregationsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/AggModel/TopHitsMetricAggregationsResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/Hit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/Hit.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/Hits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/Hits.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/SeachType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/SeachType.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/SearchResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchModel/SearchUrlParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchModel/SearchUrlParameters.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextSearch/SearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextSearch/SearchRequest.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextWarmers/ElasticsearchContextWarmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextWarmers/ElasticsearchContextWarmer.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ContextWarmers/Warmer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ContextWarmers/Warmer.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ElasticSearchContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ElasticSearchContext.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ElasticSearchMappingResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ElasticSearchMappingResolver.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ElasticsearchCrud.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ElasticsearchCrud.xproj -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ElasticsearchCrud.xproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ElasticsearchCrud.xproj.user -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ElasticsearchCrudException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ElasticsearchCrudException.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ElasticsearchCrudJsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ElasticsearchCrudJsonWriter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ElasticsearchCrudReindex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ElasticsearchCrudReindex.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ElasticsearchMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ElasticsearchMapping.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/ElasticsearchSerializerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/ElasticsearchSerializerConfiguration.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/IElasticSearchMappingResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/IElasticSearchMappingResolver.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/DateTimeFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/DateTimeFormats.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/DefaultAnalyzers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/DefaultAnalyzers.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/DefaultCharFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/DefaultCharFilters.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/DefaultSimilarities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/DefaultSimilarities.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/DefaultTokenFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/DefaultTokenFilters.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/DefaultTokenizers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/DefaultTokenizers.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/EntityContextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/EntityContextInfo.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/DefaultGeoShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/DefaultGeoShapes.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/DistanceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/DistanceType.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/DistanceUnitEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/DistanceUnitEnum.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoPoint.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapeCircle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapeCircle.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapeEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapeEnvelope.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapeGeometryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapeGeometryCollection.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapeGeometryCollectionGeometriesConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapeGeometryCollectionGeometriesConverter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapeLineString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapeLineString.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapeMultiLineString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapeMultiLineString.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapeMultiPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapeMultiPoint.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapeMultiPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapeMultiPolygon.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapePoint.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoShapePolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoShapePolygon.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GeoModel/GeoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GeoModel/GeoType.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/GetResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/GetResult.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/IndexMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/IndexMapping.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/IndexTypeDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/IndexTypeDescription.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/IndexTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/IndexTypeMapping.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/LanguageAnalyzers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/LanguageAnalyzers.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/ResultDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/ResultDetails.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/ResultDetailsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/ResultDetailsCount.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/AvgMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/AvgMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/BaseBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/BaseBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/BaseMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/BaseMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/CardinalityMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/CardinalityMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/ChidrenBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/ChidrenBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/DateHistogramBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/DateHistogramBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/DateRangeBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/DateRangeBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/ExcludeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/ExcludeExpression.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/ExtendedStatsMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/ExtendedStatsMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/FilterBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/FilterBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/FiltersBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/FiltersBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/FiltersNamedBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/FiltersNamedBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/GeoBoundsMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/GeoBoundsMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/GeoDistanceBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/GeoDistanceBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/GeohashGridBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/GeohashGridBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/GlobalBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/GlobalBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/HistogramBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/HistogramBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/IncludeExcludeBaseExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/IncludeExcludeBaseExpression.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/IncludeExcludeExpressionFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/IncludeExcludeExpressionFlags.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/IncludeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/IncludeExpression.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/MaxMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/MaxMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/MinMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/MinMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/MissingBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/MissingBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/NestedBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/NestedBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/OrderAgg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/OrderAgg.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/PercentileRanksMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/PercentileRanksMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/PercentilesMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/PercentilesMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/RangeBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/RangeBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/RangeParam/RangeAggregationParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/RangeParam/RangeAggregationParameter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/ReverseNestedBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/ReverseNestedBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/ScriptedMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/ScriptedMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/SignificantTermsBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/SignificantTermsBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/StatsMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/StatsMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/SumMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/SumMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/TermsBucketAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/TermsBucketAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/TopHitsMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/TopHitsMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Aggregations/ValueCountMetricAggregation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Aggregations/ValueCountMetricAggregation.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Document.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filtered.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filtered.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/AndFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/AndFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/BoolFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/BoolFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/ExistsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/ExistsFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/GeoBoundingBoxFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/GeoBoundingBoxFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/GeoDistanceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/GeoDistanceFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/GeoDistanceRangeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/GeoDistanceRangeFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/GeoPolygonFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/GeoPolygonFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/GeoShapeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/GeoShapeFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/GeoShapePreIndexedFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/GeoShapePreIndexedFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/GeohashCellFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/GeohashCellFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/HasChildFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/HasChildFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/HasParentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/HasParentFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/IdsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/IdsFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/IndicesFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/IndicesFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/LimitFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/LimitFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/MatchAllFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/MatchAllFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/MissingFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/MissingFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/NestedFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/NestedFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/NotFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/NotFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/OrFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/OrFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/PrefixFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/PrefixFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/QueryFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/QueryFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/RangeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/RangeFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/RegExpFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/RegExpFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/ScriptFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/ScriptFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/TermFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/TermFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/TermsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/TermsFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Filters/TypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Filters/TypeFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Highlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Highlight.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/HighlightField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/HighlightField.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/IAggs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/IAggs.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/IFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/IFilter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/IFilterHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/IFilterHolder.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/IQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/IQueryHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/IQueryHolder.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/InnerHits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/InnerHits.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/BoolQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/BoolQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/BoostingQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/BoostingQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/CommonTermsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/CommonTermsQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/ConstantScoreQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/ConstantScoreQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/DisMaxQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/DisMaxQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/BaseScoreFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/BaseScoreFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/DecayBaseScoreFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/DecayBaseScoreFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/ExpDateTimePointFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/ExpDateTimePointFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/ExpGeoPointFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/ExpGeoPointFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/ExpNumericFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/ExpNumericFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/FieldValueFactorFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/FieldValueFactorFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/FunctionScoreQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/FunctionScoreQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/FunctionScoreQueryBoostMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/FunctionScoreQueryBoostMode.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/FunctionScoreQueryScoreMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/FunctionScoreQueryScoreMode.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/GaussDateTimePointFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/GaussDateTimePointFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/GaussGeoPointFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/GaussGeoPointFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/GaussNumericFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/GaussNumericFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/GeoDecayBaseScoreFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/GeoDecayBaseScoreFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/LinearDateTimePointFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/LinearDateTimePointFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/LinearGeoPointFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/LinearGeoPointFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/LinearNumericFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/LinearNumericFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/RandomScoreFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/RandomScoreFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/ScriptScoreFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FunctionQuery/ScriptScoreFunction.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/FuzzyQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/FuzzyQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/GeoShapeQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/GeoShapeQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/HasChildQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/HasChildQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/HasParentQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/HasParentQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/ISpanQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/ISpanQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/IdsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/IdsQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/IndicesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/IndicesQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/MatchAllQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/MatchAllQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/MatchBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/MatchBase.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/MatchPhasePrefixQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/MatchPhasePrefixQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/MatchPhaseQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/MatchPhaseQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/MatchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/MatchQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/MoreLikeThisQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/MoreLikeThisQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/MultiMatchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/MultiMatchQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/NestedQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/NestedQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/PrefixQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/PrefixQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/QueryDefaultOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/QueryDefaultOperator.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/QueryStringQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/QueryStringQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/RangeQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/RangeQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/RegExpQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/RegExpQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/ScoreMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/ScoreMode.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/SimpleQueryStringQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/SimpleQueryStringQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/SpanFirstQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/SpanFirstQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/SpanMultiQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/SpanMultiQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/SpanNearQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/SpanNearQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/SpanNotQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/SpanNotQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/SpanOrQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/SpanOrQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/SpanTermQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/SpanTermQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/TermQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/TermQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/TermsQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/TermsQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Queries/WildcardQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Queries/WildcardQuery.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Query.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Rescore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Rescore.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/ScriptParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/ScriptParameter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Search.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Sorting/ISort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Sorting/ISort.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Sorting/OrderEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Sorting/OrderEnum.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Sorting/SortGeoDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Sorting/SortGeoDistance.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Sorting/SortHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Sorting/SortHolder.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Sorting/SortScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Sorting/SortScript.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/SearchModel/Sorting/SortStandard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/SearchModel/Sorting/SortStandard.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Shards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Shards.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnit.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnitCentimeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnitCentimeter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnitFeet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnitFeet.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnitInch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnitInch.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnitKilometer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnitKilometer.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnitMeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnitMeter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnitMiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnitMiles.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnitMillimeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnitMillimeter.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnitNauticalMile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnitNauticalMile.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/DistanceUnitYard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/DistanceUnitYard.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/TimeUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/TimeUnit.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/TimeUnitDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/TimeUnitDay.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/TimeUnitHour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/TimeUnitHour.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/TimeUnitMinute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/TimeUnitMinute.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/TimeUnitMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/TimeUnitMonth.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/TimeUnitSecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/TimeUnitSecond.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/TimeUnitWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/TimeUnitWeek.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Model/Units/TimeUnitYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Model/Units/TimeUnitYear.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Tracing/ConsoleTraceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Tracing/ConsoleTraceProvider.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Tracing/ITraceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Tracing/ITraceProvider.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Tracing/NullTraceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Tracing/NullTraceProvider.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Tracing/TraceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Tracing/TraceProvider.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Utils/GlobalElasticsearchMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Utils/GlobalElasticsearchMapping.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Utils/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Utils/JsonHelper.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Utils/MappingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Utils/MappingUtils.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Utils/ParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Utils/ParameterCollection.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/Utils/SyncExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/Utils/SyncExecute.cs -------------------------------------------------------------------------------- /src/ElasticsearchCrud/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchCrud/project.json -------------------------------------------------------------------------------- /src/ElasticsearchGermanAnalyzer/ElasticsearchGermanAnalyzer.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchGermanAnalyzer/ElasticsearchGermanAnalyzer.xproj -------------------------------------------------------------------------------- /src/ElasticsearchGermanAnalyzer/ElasticsearchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchGermanAnalyzer/ElasticsearchProvider.cs -------------------------------------------------------------------------------- /src/ElasticsearchGermanAnalyzer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchGermanAnalyzer/Program.cs -------------------------------------------------------------------------------- /src/ElasticsearchGermanAnalyzer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchGermanAnalyzer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ElasticsearchGermanAnalyzer/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/damienbod/ElasticsearchCRUD/HEAD/src/ElasticsearchGermanAnalyzer/project.json --------------------------------------------------------------------------------