text
stringlengths 9
39.2M
| dir
stringlengths 25
226
| lang
stringclasses 163
values | created_date
timestamp[s] | updated_date
timestamp[s] | repo_name
stringclasses 751
values | repo_full_name
stringclasses 752
values | star
int64 1.01k
183k
| len_tokens
int64 1
18.5M
|
|---|---|---|---|---|---|---|---|---|
```unknown
@inherits LayoutComponentBase
<PageTitle>BlazorAppServer</PageTitle>
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<main>
<article class="content px-4">
@Body
</article>
</main>
</div>
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Shared/MainLayout.razor
|
unknown
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 69
|
```css
.page {
position: relative;
display: flex;
flex-direction: column;
}
main {
flex: 1;
}
.sidebar {
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}
.top-row {
background-color: #f7f7f7;
border-bottom: 1px solid #d6d5d5;
justify-content: flex-end;
height: 3.5rem;
display: flex;
align-items: center;
}
.top-row ::deep a, .top-row .btn-link {
white-space: nowrap;
margin-left: 1.5rem;
}
.top-row a:first-child {
overflow: hidden;
text-overflow: ellipsis;
}
@media (max-width: 640.98px) {
.top-row:not(.auth) {
display: none;
}
.top-row.auth {
justify-content: space-between;
}
.top-row a, .top-row .btn-link {
margin-left: 0;
}
}
@media (min-width: 641px) {
.page {
flex-direction: row;
}
.sidebar {
width: 250px;
height: 100vh;
position: sticky;
top: 0;
}
.top-row {
position: sticky;
top: 0;
z-index: 1;
}
.top-row, article {
padding-left: 2rem !important;
padding-right: 1.5rem !important;
}
}
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Shared/MainLayout.razor.css
|
css
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 354
|
```css
.navbar-toggler {
background-color: rgba(255, 255, 255, 0.1);
}
.top-row {
height: 3.5rem;
background-color: rgba(0,0,0,0.4);
}
.navbar-brand {
font-size: 1.1rem;
}
.oi {
width: 2rem;
font-size: 1.1rem;
vertical-align: text-top;
top: -2px;
}
.nav-item {
font-size: 0.9rem;
padding-bottom: 0.5rem;
}
.nav-item:first-of-type {
padding-top: 1rem;
}
.nav-item:last-of-type {
padding-bottom: 1rem;
}
.nav-item ::deep a {
color: #d7d7d7;
border-radius: 4px;
height: 3rem;
display: flex;
align-items: center;
line-height: 3rem;
}
.nav-item ::deep a.active {
background-color: rgba(255,255,255,0.25);
color: white;
}
.nav-item ::deep a:hover {
background-color: rgba(255,255,255,0.1);
color: white;
}
@media (min-width: 641px) {
.navbar-toggler {
display: none;
}
.collapse {
/* Never collapse the sidebar for wide screens */
display: block;
}
}
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Shared/NavMenu.razor.css
|
css
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 321
|
```unknown
<div class="alert alert-secondary mt-4">
<span class="oi oi-pencil me-2" aria-hidden="true"></span>
<strong>@Title</strong>
<span class="text-nowrap">
Please take our
<a target="_blank" class="font-weight-bold link-dark" href="path_to_url">brief survey</a>
</span>
and tell us what you think.
</div>
@code {
// Demonstrates how a parent component can supply parameters
[Parameter]
public string? Title { get; set; }
}
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Shared/SurveyPrompt.razor
|
unknown
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 124
|
```unknown
<div class="top-row ps-3 navbar navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="">BlazorApp1</a>
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
<div class="@NavMenuCssClass" @onclick="ToggleNavMenu">
<nav class="flex-column">
<div class="nav-item px-3">
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
<span class="oi oi-home" aria-hidden="true"></span> Home
</NavLink>
</div>
<div class="nav-item px-3">
<NavLink class="nav-link" href="counter">
<span class="oi oi-plus" aria-hidden="true"></span> Counter
</NavLink>
</div>
<div class="nav-item px-3">
<NavLink class="nav-link" href="fetchdata">
<span class="oi oi-list-rich" aria-hidden="true"></span> Fetch data
</NavLink>
</div>
</nav>
</div>
@code {
private bool collapseNavMenu = true;
private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;
private void ToggleNavMenu()
{
collapseNavMenu = !collapseNavMenu;
}
}
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Shared/NavMenu.razor
|
unknown
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 317
|
```css
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h1:focus {
outline: none;
}
a, .btn-link {
color: #0071c1;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.content {
padding-top: 1.1rem;
}
.valid.modified:not([type=checkbox]) {
outline: 1px solid #26b050;
}
.invalid {
outline: 1px solid red;
}
.validation-message {
color: red;
}
#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
}
.blazor-error-boundary {
background: url(data:image/svg+xml;base64,your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashOSIvPjwvY2xpcFBhdGg+your_sha256_hashbnNsYXRlKC0yMzUgLTUxKSI+your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
padding: 1rem 1rem 1rem 3.7rem;
color: white;
}
.blazor-error-boundary::after {
content: "An error has occurred."
}
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/wwwroot/css/site.css
|
css
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 521
|
```css
/*!
* Bootstrap v4.3.1 (path_to_url
*/:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip{display:block}.form-control-file.is-valid~.valid-feedback,.form-control-file.is-valid~.valid-tooltip,.was-validated .form-control-file:valid~.valid-feedback,.was-validated .form-control-file:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");background-repeat:no-repeat;background-position:center right calc(.375em + .1875rem);background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc((1em + .75rem) * 3 / 4 + 1.75rem);background:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='path_to_url fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip{display:block}.form-control-file.is-invalid~.invalid-feedback,.form-control-file.is-invalid~.invalid-tooltip,.was-validated .form-control-file:invalid~.invalid-feedback,.was-validated .form-control-file:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:calc(1rem + .4rem);padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='path_to_url stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='path_to_url stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:-ms-flexbox;display:flex;-ms-flex:1 0 0%;flex:1 0 0%;-ms-flex-direction:column;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:first-of-type) .card-header:first-child{border-radius:0}.accordion>.card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0}.accordion>.card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:last-of-type{border-top-left-radius:0;border-top-right-radius:0}.accordion>.card .card-header{margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-sm .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-md .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-lg .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl .list-group-item{margin-right:-1px;margin-bottom:0}.list-group-horizontal-xl .list-group-item:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{margin-right:0;border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-bottom-left-radius:0}}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush .list-group-item:last-child{margin-bottom:-1px}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{margin-bottom:0;border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}a.close.disabled{pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:.3rem;border-bottom-left-radius:.3rem}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s .6s opacity}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.flex-sm-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-sm-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-sm-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.flex-md-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-md-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-md-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-lg-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-lg-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.flex-xl-fill{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.justify-content-xl-start{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
/*# sourceMappingURL=bootstrap.min.css.map */
```
|
/content/code_sandbox/src-blazor/BlazorAppTest/wwwroot/css/bootstrap/bootstrap.min.css
|
css
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 45,170
|
```unknown
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/wwwroot/css/bootstrap/bootstrap.min.css.map
|
unknown
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1
|
```css
@font-face{font-family:Icons;src:url(../fonts/open-iconic.eot);src:url(../fonts/open-iconic.eot?#iconic-sm) format('embedded-opentype'),url(../fonts/open-iconic.woff) format('woff'),url(../fonts/open-iconic.ttf) format('truetype'),url(../fonts/open-iconic.otf) format('opentype'),url(../fonts/open-iconic.svg#iconic-sm) format('svg');font-weight:400;font-style:normal}.oi{position:relative;top:1px;display:inline-block;speak:none;font-family:Icons;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.oi:empty:before{width:1em;text-align:center;box-sizing:content-box}.oi.oi-align-center:before{text-align:center}.oi.oi-align-left:before{text-align:left}.oi.oi-align-right:before{text-align:right}.oi.oi-flip-horizontal:before{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.oi.oi-flip-vertical:before{-webkit-transform:scale(1,-1);-ms-transform:scale(-1,1);transform:scale(1,-1)}.oi.oi-flip-horizontal-vertical:before{-webkit-transform:scale(-1,-1);-ms-transform:scale(-1,1);transform:scale(-1,-1)}.oi-account-login:before{content:'\e000'}.oi-account-logout:before{content:'\e001'}.oi-action-redo:before{content:'\e002'}.oi-action-undo:before{content:'\e003'}.oi-align-center:before{content:'\e004'}.oi-align-left:before{content:'\e005'}.oi-align-right:before{content:'\e006'}.oi-aperture:before{content:'\e007'}.oi-arrow-bottom:before{content:'\e008'}.oi-arrow-circle-bottom:before{content:'\e009'}.oi-arrow-circle-left:before{content:'\e00a'}.oi-arrow-circle-right:before{content:'\e00b'}.oi-arrow-circle-top:before{content:'\e00c'}.oi-arrow-left:before{content:'\e00d'}.oi-arrow-right:before{content:'\e00e'}.oi-arrow-thick-bottom:before{content:'\e00f'}.oi-arrow-thick-left:before{content:'\e010'}.oi-arrow-thick-right:before{content:'\e011'}.oi-arrow-thick-top:before{content:'\e012'}.oi-arrow-top:before{content:'\e013'}.oi-audio-spectrum:before{content:'\e014'}.oi-audio:before{content:'\e015'}.oi-badge:before{content:'\e016'}.oi-ban:before{content:'\e017'}.oi-bar-chart:before{content:'\e018'}.oi-basket:before{content:'\e019'}.oi-battery-empty:before{content:'\e01a'}.oi-battery-full:before{content:'\e01b'}.oi-beaker:before{content:'\e01c'}.oi-bell:before{content:'\e01d'}.oi-bluetooth:before{content:'\e01e'}.oi-bold:before{content:'\e01f'}.oi-bolt:before{content:'\e020'}.oi-book:before{content:'\e021'}.oi-bookmark:before{content:'\e022'}.oi-box:before{content:'\e023'}.oi-briefcase:before{content:'\e024'}.oi-british-pound:before{content:'\e025'}.oi-browser:before{content:'\e026'}.oi-brush:before{content:'\e027'}.oi-bug:before{content:'\e028'}.oi-bullhorn:before{content:'\e029'}.oi-calculator:before{content:'\e02a'}.oi-calendar:before{content:'\e02b'}.oi-camera-slr:before{content:'\e02c'}.oi-caret-bottom:before{content:'\e02d'}.oi-caret-left:before{content:'\e02e'}.oi-caret-right:before{content:'\e02f'}.oi-caret-top:before{content:'\e030'}.oi-cart:before{content:'\e031'}.oi-chat:before{content:'\e032'}.oi-check:before{content:'\e033'}.oi-chevron-bottom:before{content:'\e034'}.oi-chevron-left:before{content:'\e035'}.oi-chevron-right:before{content:'\e036'}.oi-chevron-top:before{content:'\e037'}.oi-circle-check:before{content:'\e038'}.oi-circle-x:before{content:'\e039'}.oi-clipboard:before{content:'\e03a'}.oi-clock:before{content:'\e03b'}.oi-cloud-download:before{content:'\e03c'}.oi-cloud-upload:before{content:'\e03d'}.oi-cloud:before{content:'\e03e'}.oi-cloudy:before{content:'\e03f'}.oi-code:before{content:'\e040'}.oi-cog:before{content:'\e041'}.oi-collapse-down:before{content:'\e042'}.oi-collapse-left:before{content:'\e043'}.oi-collapse-right:before{content:'\e044'}.oi-collapse-up:before{content:'\e045'}.oi-command:before{content:'\e046'}.oi-comment-square:before{content:'\e047'}.oi-compass:before{content:'\e048'}.oi-contrast:before{content:'\e049'}.oi-copywriting:before{content:'\e04a'}.oi-credit-card:before{content:'\e04b'}.oi-crop:before{content:'\e04c'}.oi-dashboard:before{content:'\e04d'}.oi-data-transfer-download:before{content:'\e04e'}.oi-data-transfer-upload:before{content:'\e04f'}.oi-delete:before{content:'\e050'}.oi-dial:before{content:'\e051'}.oi-document:before{content:'\e052'}.oi-dollar:before{content:'\e053'}.oi-double-quote-sans-left:before{content:'\e054'}.oi-double-quote-sans-right:before{content:'\e055'}.oi-double-quote-serif-left:before{content:'\e056'}.oi-double-quote-serif-right:before{content:'\e057'}.oi-droplet:before{content:'\e058'}.oi-eject:before{content:'\e059'}.oi-elevator:before{content:'\e05a'}.oi-ellipses:before{content:'\e05b'}.oi-envelope-closed:before{content:'\e05c'}.oi-envelope-open:before{content:'\e05d'}.oi-euro:before{content:'\e05e'}.oi-excerpt:before{content:'\e05f'}.oi-expand-down:before{content:'\e060'}.oi-expand-left:before{content:'\e061'}.oi-expand-right:before{content:'\e062'}.oi-expand-up:before{content:'\e063'}.oi-external-link:before{content:'\e064'}.oi-eye:before{content:'\e065'}.oi-eyedropper:before{content:'\e066'}.oi-file:before{content:'\e067'}.oi-fire:before{content:'\e068'}.oi-flag:before{content:'\e069'}.oi-flash:before{content:'\e06a'}.oi-folder:before{content:'\e06b'}.oi-fork:before{content:'\e06c'}.oi-fullscreen-enter:before{content:'\e06d'}.oi-fullscreen-exit:before{content:'\e06e'}.oi-globe:before{content:'\e06f'}.oi-graph:before{content:'\e070'}.oi-grid-four-up:before{content:'\e071'}.oi-grid-three-up:before{content:'\e072'}.oi-grid-two-up:before{content:'\e073'}.oi-hard-drive:before{content:'\e074'}.oi-header:before{content:'\e075'}.oi-headphones:before{content:'\e076'}.oi-heart:before{content:'\e077'}.oi-home:before{content:'\e078'}.oi-image:before{content:'\e079'}.oi-inbox:before{content:'\e07a'}.oi-infinity:before{content:'\e07b'}.oi-info:before{content:'\e07c'}.oi-italic:before{content:'\e07d'}.oi-justify-center:before{content:'\e07e'}.oi-justify-left:before{content:'\e07f'}.oi-justify-right:before{content:'\e080'}.oi-key:before{content:'\e081'}.oi-laptop:before{content:'\e082'}.oi-layers:before{content:'\e083'}.oi-lightbulb:before{content:'\e084'}.oi-link-broken:before{content:'\e085'}.oi-link-intact:before{content:'\e086'}.oi-list-rich:before{content:'\e087'}.oi-list:before{content:'\e088'}.oi-location:before{content:'\e089'}.oi-lock-locked:before{content:'\e08a'}.oi-lock-unlocked:before{content:'\e08b'}.oi-loop-circular:before{content:'\e08c'}.oi-loop-square:before{content:'\e08d'}.oi-loop:before{content:'\e08e'}.oi-magnifying-glass:before{content:'\e08f'}.oi-map-marker:before{content:'\e090'}.oi-map:before{content:'\e091'}.oi-media-pause:before{content:'\e092'}.oi-media-play:before{content:'\e093'}.oi-media-record:before{content:'\e094'}.oi-media-skip-backward:before{content:'\e095'}.oi-media-skip-forward:before{content:'\e096'}.oi-media-step-backward:before{content:'\e097'}.oi-media-step-forward:before{content:'\e098'}.oi-media-stop:before{content:'\e099'}.oi-medical-cross:before{content:'\e09a'}.oi-menu:before{content:'\e09b'}.oi-microphone:before{content:'\e09c'}.oi-minus:before{content:'\e09d'}.oi-monitor:before{content:'\e09e'}.oi-moon:before{content:'\e09f'}.oi-move:before{content:'\e0a0'}.oi-musical-note:before{content:'\e0a1'}.oi-paperclip:before{content:'\e0a2'}.oi-pencil:before{content:'\e0a3'}.oi-people:before{content:'\e0a4'}.oi-person:before{content:'\e0a5'}.oi-phone:before{content:'\e0a6'}.oi-pie-chart:before{content:'\e0a7'}.oi-pin:before{content:'\e0a8'}.oi-play-circle:before{content:'\e0a9'}.oi-plus:before{content:'\e0aa'}.oi-power-standby:before{content:'\e0ab'}.oi-print:before{content:'\e0ac'}.oi-project:before{content:'\e0ad'}.oi-pulse:before{content:'\e0ae'}.oi-puzzle-piece:before{content:'\e0af'}.oi-question-mark:before{content:'\e0b0'}.oi-rain:before{content:'\e0b1'}.oi-random:before{content:'\e0b2'}.oi-reload:before{content:'\e0b3'}.oi-resize-both:before{content:'\e0b4'}.oi-resize-height:before{content:'\e0b5'}.oi-resize-width:before{content:'\e0b6'}.oi-rss-alt:before{content:'\e0b7'}.oi-rss:before{content:'\e0b8'}.oi-script:before{content:'\e0b9'}.oi-share-boxed:before{content:'\e0ba'}.oi-share:before{content:'\e0bb'}.oi-shield:before{content:'\e0bc'}.oi-signal:before{content:'\e0bd'}.oi-signpost:before{content:'\e0be'}.oi-sort-ascending:before{content:'\e0bf'}.oi-sort-descending:before{content:'\e0c0'}.oi-spreadsheet:before{content:'\e0c1'}.oi-star:before{content:'\e0c2'}.oi-sun:before{content:'\e0c3'}.oi-tablet:before{content:'\e0c4'}.oi-tag:before{content:'\e0c5'}.oi-tags:before{content:'\e0c6'}.oi-target:before{content:'\e0c7'}.oi-task:before{content:'\e0c8'}.oi-terminal:before{content:'\e0c9'}.oi-text:before{content:'\e0ca'}.oi-thumb-down:before{content:'\e0cb'}.oi-thumb-up:before{content:'\e0cc'}.oi-timer:before{content:'\e0cd'}.oi-transfer:before{content:'\e0ce'}.oi-trash:before{content:'\e0cf'}.oi-underline:before{content:'\e0d0'}.oi-vertical-align-bottom:before{content:'\e0d1'}.oi-vertical-align-center:before{content:'\e0d2'}.oi-vertical-align-top:before{content:'\e0d3'}.oi-video:before{content:'\e0d4'}.oi-volume-high:before{content:'\e0d5'}.oi-volume-low:before{content:'\e0d6'}.oi-volume-off:before{content:'\e0d7'}.oi-warning:before{content:'\e0d8'}.oi-wifi:before{content:'\e0d9'}.oi-wrench:before{content:'\e0da'}.oi-x:before{content:'\e0db'}.oi-yen:before{content:'\e0dc'}.oi-zoom-in:before{content:'\e0dd'}.oi-zoom-out:before{content:'\e0de'}
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css
|
css
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,185
|
```smalltalk
using Microsoft.EntityFrameworkCore;
namespace BlazorAppServer.Data;
public class EntityContext : DbContext
{
public virtual DbSet<Contract> Contracts { get; set; }
public EntityContext()
{
}
public EntityContext(DbContextOptions<EntityContext> options)
: base(options)
{
}
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
if (!optionsBuilder.IsConfigured)
{
optionsBuilder.UseSqlServer("Data Source=(localdb)\\MSSQLLocalDB;Initial Catalog=Contracts;Integrated Security=True;Connect Timeout=30;TrustServerCertificate=True");
}
}
}
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Data/EntityContext.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 132
|
```smalltalk
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BlazorAppServer.Data;
[Table("Contract")]
public class Contract
{
[Key]
public int UId { get; set; }
public DateTime? DateC { get; set; }
}
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Data/Contract.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 58
|
```c#
@page "/"
@namespace BlazorAppServer.Pages ;
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
Layout = "_Layout";
}
<component type="typeof(App)" render-mode="ServerPrerendered" />
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Pages/_Host.cshtml
|
c#
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 49
|
```unknown
@page "/"
@using System.Linq.Dynamic.Core
Current Culture = @System.Globalization.CultureInfo.CurrentCulture
<hr />
<pre>contractList : All</pre>
@foreach (var contract in ContractListAll)
{
<div>@contract.DateC.ToString()</div>
}
<hr />
<pre>contractList : Where</pre>
@foreach (var contract in ContractList)
{
<div>@contract.DateC.ToString()</div>
}
@code {
public List<Contract> ContractList = new();
public List<Contract> ContractListAll = new();
protected override async Task OnInitializedAsync()
{
await LoadDataAsync();
}
public async Task LoadDataAsync()
{
await using var context = new EntityContext();
await context.Database.EnsureCreatedAsync();
ContractList = context.Contracts.Where("DateC <= DateTime(2021, 1, 1)").ToList();
ContractListAll = context.Contracts.ToList();
}
}
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Pages/Index.razor
|
unknown
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 196
|
```c#
@using Microsoft.AspNetCore.Components.Web
@namespace BlazorAppServer.Pages ;
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="~/" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link href="css/site.css" rel="stylesheet" />
<link href="BlazorApp1.styles.css" rel="stylesheet" />
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
</head>
<body>
@RenderBody()
<div id="blazor-error-ui">
<environment include="Staging,Production">
An error has occurred. This application may no longer respond until reloaded.
</environment>
<environment include="Development">
An unhandled exception has occurred. See browser dev tools for details.
</environment>
<a href="" class="reload">Reload</a>
<a class="dismiss"></a>
</div>
<script src="_framework/blazor.server.js"></script>
</body>
</html>
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/Pages/_Layout.cshtml
|
c#
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 259
|
```css
@charset "UTF-8";/*!
* Bootstrap v5.1.0 (path_to_url
*/:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-rgb:33,37,41;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:""}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map */
```
|
/content/code_sandbox/src-blazor/BlazorAppServer/wwwroot/css/bootstrap/bootstrap.min.css
|
css
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 47,912
|
```html
<div id="sidetoggle">
<div>
<div class="sidefilter">
<form class="toc-filter">
<span class="glyphicon glyphicon-filter filter-icon"></span>
<span class="glyphicon glyphicon-remove clear-icon" id="toc_filter_clear"></span>
<input type="text" id="toc_filter_input" placeholder="Enter here to filter..." onkeypress="if(event.keyCode==13) {return false;}">
</form>
</div>
<div class="sidetoc">
<div class="toc" id="toc">
<ul class="nav level1">
<li>
<a href="index.html" name="" title="Home">Home</a>
</li>
<li>
<a href="api/System.html" name="api/toc.html" title="API Documentation">API Documentation</a>
</li>
</ul>
</div>
</div>
</div>
</div>
```
|
/content/code_sandbox/docs/toc.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 212
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>System.Linq.Dynamic.Core </title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="System.Linq.Dynamic.Core ">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="styles/docfx.vendor.css">
<link rel="stylesheet" href="styles/docfx.css">
<link rel="stylesheet" href="styles/main.css">
<meta property="docfx:navrel" content="toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<img id="logo" class="svg" src="logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="article row grid">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="">
<h1 id="systemlinqdynamiccore">System.Linq.Dynamic.Core</h1>
<p>This is a <strong>.NET Core / Standard port</strong> of the Microsoft assembly for the .Net 4.0 Dynamic language functionality.</p>
<h1 id="overview">Overview</h1>
<p>With this library it's possible to write Dynamic LINQ queries (string based) on an <code>IQueryable</code>:</p>
<pre><code class="lang-c#">var query = db.Customers
.Where("City == @0 and Orders.Count >= @1", "London", 10)
.OrderBy("CompanyName")
.Select("new(CompanyName as Name, Phone)");
</code></pre>
<h1 id="api-documentation">API Documentation</h1>
<p>See <a href="api/System.Linq.Dynamic.Core.html">this link</a>.</p>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url#L1" class="contribution-link">Improve this Doc</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="styles/docfx.vendor.js"></script>
<script type="text/javascript" src="styles/docfx.js"></script>
<script type="text/javascript" src="styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/index.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,183
|
```css
```
|
/content/code_sandbox/docs/styles/main.css
|
css
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1
|
```javascript
```
|
/content/code_sandbox/docs/styles/docfx.vendor.js
|
javascript
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1
|
```css
/*!
* Bootstrap v3.4.1 (path_to_url
*/
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}
audio,canvas,progress,video{display:inline-block;vertical-align:baseline}
audio:not([controls]){display:none;height:0}
[hidden],template{display:none}
a:active,a:hover{outline:0}
abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;-moz-text-decoration:underline dotted;text-decoration:underline dotted}
b,optgroup,strong{font-weight:700}
dfn{font-style:italic}
h1{margin:.67em 0}
mark{background:#ff0;color:#000}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sup{top:-.5em}
sub{bottom:-.25em}
img{border:0;vertical-align:middle}
svg:not(:root){overflow:hidden}
hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}
code,kbd,pre,samp{font-size:1em}
button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}
button{overflow:visible}
button,select{text-transform:none}
button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}
button[disabled],html input[disabled]{cursor:default}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
input{line-height:normal}
input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}
input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}
input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}
textarea{overflow:auto}
td,th{padding:0}
/*! Source: path_to_url */
@media print{
*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}
a,a:visited{text-decoration:underline}
a[href]:after{content:" (" attr(href) ")"}
abbr[title]:after{content:" (" attr(title) ")"}
a[href^="#"]:after,a[href^="javascript:"]:after{content:""}
blockquote,pre{border:1px solid #999;page-break-inside:avoid}
thead{display:table-header-group}
img,tr{page-break-inside:avoid}
img{max-width:100%!important}
h2,h3,p{orphans:3;widows:3}
h2,h3{page-break-after:avoid}
.navbar{display:none}
.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}
.label{border:1px solid #000}
.table{border-collapse:collapse!important}
.table td,.table th{background-color:#fff!important}
.table-bordered td,.table-bordered th{border:1px solid #ddd!important}
}
@font-face{font-family:"Glyphicons Halflings";src:url("../fonts/glyphicons-halflings-regular.eot");src:url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("../fonts/glyphicons-halflings-regular.woff") format("woff"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}
.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.glyphicon-asterisk:before{content:"\002a"}
.glyphicon-plus:before{content:"\002b"}
.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}
.glyphicon-minus:before{content:"\2212"}
.glyphicon-cloud:before{content:"\2601"}
.glyphicon-envelope:before{content:"\2709"}
.glyphicon-pencil:before{content:"\270f"}
.glyphicon-glass:before{content:"\e001"}
.glyphicon-music:before{content:"\e002"}
.glyphicon-search:before{content:"\e003"}
.glyphicon-heart:before{content:"\e005"}
.glyphicon-star:before{content:"\e006"}
.glyphicon-star-empty:before{content:"\e007"}
.glyphicon-user:before{content:"\e008"}
.glyphicon-film:before{content:"\e009"}
.glyphicon-th-large:before{content:"\e010"}
.glyphicon-th:before{content:"\e011"}
.glyphicon-th-list:before{content:"\e012"}
.glyphicon-ok:before{content:"\e013"}
.glyphicon-remove:before{content:"\e014"}
.glyphicon-zoom-in:before{content:"\e015"}
.glyphicon-zoom-out:before{content:"\e016"}
.glyphicon-off:before{content:"\e017"}
.glyphicon-signal:before{content:"\e018"}
.glyphicon-cog:before{content:"\e019"}
.glyphicon-trash:before{content:"\e020"}
.glyphicon-home:before{content:"\e021"}
.glyphicon-file:before{content:"\e022"}
.glyphicon-time:before{content:"\e023"}
.glyphicon-road:before{content:"\e024"}
.glyphicon-download-alt:before{content:"\e025"}
.glyphicon-download:before{content:"\e026"}
.glyphicon-upload:before{content:"\e027"}
.glyphicon-inbox:before{content:"\e028"}
.glyphicon-play-circle:before{content:"\e029"}
.glyphicon-repeat:before{content:"\e030"}
.glyphicon-refresh:before{content:"\e031"}
.glyphicon-list-alt:before{content:"\e032"}
.glyphicon-lock:before{content:"\e033"}
.glyphicon-flag:before{content:"\e034"}
.glyphicon-headphones:before{content:"\e035"}
.glyphicon-volume-off:before{content:"\e036"}
.glyphicon-volume-down:before{content:"\e037"}
.glyphicon-volume-up:before{content:"\e038"}
.glyphicon-qrcode:before{content:"\e039"}
.glyphicon-barcode:before{content:"\e040"}
.glyphicon-tag:before{content:"\e041"}
.glyphicon-tags:before{content:"\e042"}
.glyphicon-book:before{content:"\e043"}
.glyphicon-bookmark:before{content:"\e044"}
.glyphicon-print:before{content:"\e045"}
.glyphicon-camera:before{content:"\e046"}
.glyphicon-font:before{content:"\e047"}
.glyphicon-bold:before{content:"\e048"}
.glyphicon-italic:before{content:"\e049"}
.glyphicon-text-height:before{content:"\e050"}
.glyphicon-text-width:before{content:"\e051"}
.glyphicon-align-left:before{content:"\e052"}
.glyphicon-align-center:before{content:"\e053"}
.glyphicon-align-right:before{content:"\e054"}
.glyphicon-align-justify:before{content:"\e055"}
.glyphicon-list:before{content:"\e056"}
.glyphicon-indent-left:before{content:"\e057"}
.glyphicon-indent-right:before{content:"\e058"}
.glyphicon-facetime-video:before{content:"\e059"}
.glyphicon-picture:before{content:"\e060"}
.glyphicon-map-marker:before{content:"\e062"}
.glyphicon-adjust:before{content:"\e063"}
.glyphicon-tint:before{content:"\e064"}
.glyphicon-edit:before{content:"\e065"}
.glyphicon-share:before{content:"\e066"}
.glyphicon-check:before{content:"\e067"}
.glyphicon-move:before{content:"\e068"}
.glyphicon-step-backward:before{content:"\e069"}
.glyphicon-fast-backward:before{content:"\e070"}
.glyphicon-backward:before{content:"\e071"}
.glyphicon-play:before{content:"\e072"}
.glyphicon-pause:before{content:"\e073"}
.glyphicon-stop:before{content:"\e074"}
.glyphicon-forward:before{content:"\e075"}
.glyphicon-fast-forward:before{content:"\e076"}
.glyphicon-step-forward:before{content:"\e077"}
.glyphicon-eject:before{content:"\e078"}
.glyphicon-chevron-left:before{content:"\e079"}
.glyphicon-chevron-right:before{content:"\e080"}
.glyphicon-plus-sign:before{content:"\e081"}
.glyphicon-minus-sign:before{content:"\e082"}
.glyphicon-remove-sign:before{content:"\e083"}
.glyphicon-ok-sign:before{content:"\e084"}
.glyphicon-question-sign:before{content:"\e085"}
.glyphicon-info-sign:before{content:"\e086"}
.glyphicon-screenshot:before{content:"\e087"}
.glyphicon-remove-circle:before{content:"\e088"}
.glyphicon-ok-circle:before{content:"\e089"}
.glyphicon-ban-circle:before{content:"\e090"}
.glyphicon-arrow-left:before{content:"\e091"}
.glyphicon-arrow-right:before{content:"\e092"}
.glyphicon-arrow-up:before{content:"\e093"}
.glyphicon-arrow-down:before{content:"\e094"}
.glyphicon-share-alt:before{content:"\e095"}
.glyphicon-resize-full:before{content:"\e096"}
.glyphicon-resize-small:before{content:"\e097"}
.glyphicon-exclamation-sign:before{content:"\e101"}
.glyphicon-gift:before{content:"\e102"}
.glyphicon-leaf:before{content:"\e103"}
.glyphicon-fire:before{content:"\e104"}
.glyphicon-eye-open:before{content:"\e105"}
.glyphicon-eye-close:before{content:"\e106"}
.glyphicon-warning-sign:before{content:"\e107"}
.glyphicon-plane:before{content:"\e108"}
.glyphicon-calendar:before{content:"\e109"}
.glyphicon-random:before{content:"\e110"}
.glyphicon-comment:before{content:"\e111"}
.glyphicon-magnet:before{content:"\e112"}
.glyphicon-chevron-up:before{content:"\e113"}
.glyphicon-chevron-down:before{content:"\e114"}
.glyphicon-retweet:before{content:"\e115"}
.glyphicon-shopping-cart:before{content:"\e116"}
.glyphicon-folder-close:before{content:"\e117"}
.glyphicon-folder-open:before{content:"\e118"}
.glyphicon-resize-vertical:before{content:"\e119"}
.glyphicon-resize-horizontal:before{content:"\e120"}
.glyphicon-hdd:before{content:"\e121"}
.glyphicon-bullhorn:before{content:"\e122"}
.glyphicon-bell:before{content:"\e123"}
.glyphicon-certificate:before{content:"\e124"}
.glyphicon-thumbs-up:before{content:"\e125"}
.glyphicon-thumbs-down:before{content:"\e126"}
.glyphicon-hand-right:before{content:"\e127"}
.glyphicon-hand-left:before{content:"\e128"}
.glyphicon-hand-up:before{content:"\e129"}
.glyphicon-hand-down:before{content:"\e130"}
.glyphicon-circle-arrow-right:before{content:"\e131"}
.glyphicon-circle-arrow-left:before{content:"\e132"}
.glyphicon-circle-arrow-up:before{content:"\e133"}
.glyphicon-circle-arrow-down:before{content:"\e134"}
.glyphicon-globe:before{content:"\e135"}
.glyphicon-wrench:before{content:"\e136"}
.glyphicon-tasks:before{content:"\e137"}
.glyphicon-filter:before{content:"\e138"}
.glyphicon-briefcase:before{content:"\e139"}
.glyphicon-fullscreen:before{content:"\e140"}
.glyphicon-dashboard:before{content:"\e141"}
.glyphicon-paperclip:before{content:"\e142"}
.glyphicon-heart-empty:before{content:"\e143"}
.glyphicon-link:before{content:"\e144"}
.glyphicon-phone:before{content:"\e145"}
.glyphicon-pushpin:before{content:"\e146"}
.glyphicon-usd:before{content:"\e148"}
.glyphicon-gbp:before{content:"\e149"}
.glyphicon-sort:before{content:"\e150"}
.glyphicon-sort-by-alphabet:before{content:"\e151"}
.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}
.glyphicon-sort-by-order:before{content:"\e153"}
.glyphicon-sort-by-order-alt:before{content:"\e154"}
.glyphicon-sort-by-attributes:before{content:"\e155"}
.glyphicon-sort-by-attributes-alt:before{content:"\e156"}
.glyphicon-unchecked:before{content:"\e157"}
.glyphicon-expand:before{content:"\e158"}
.glyphicon-collapse-down:before{content:"\e159"}
.glyphicon-collapse-up:before{content:"\e160"}
.glyphicon-log-in:before{content:"\e161"}
.glyphicon-flash:before{content:"\e162"}
.glyphicon-log-out:before{content:"\e163"}
.glyphicon-new-window:before{content:"\e164"}
.glyphicon-record:before{content:"\e165"}
.glyphicon-save:before{content:"\e166"}
.glyphicon-open:before{content:"\e167"}
.glyphicon-saved:before{content:"\e168"}
.glyphicon-import:before{content:"\e169"}
.glyphicon-export:before{content:"\e170"}
.glyphicon-send:before{content:"\e171"}
.glyphicon-floppy-disk:before{content:"\e172"}
.glyphicon-floppy-saved:before{content:"\e173"}
.glyphicon-floppy-remove:before{content:"\e174"}
.glyphicon-floppy-save:before{content:"\e175"}
.glyphicon-floppy-open:before{content:"\e176"}
.glyphicon-credit-card:before{content:"\e177"}
.glyphicon-transfer:before{content:"\e178"}
.glyphicon-cutlery:before{content:"\e179"}
.glyphicon-header:before{content:"\e180"}
.glyphicon-compressed:before{content:"\e181"}
.glyphicon-earphone:before{content:"\e182"}
.glyphicon-phone-alt:before{content:"\e183"}
.glyphicon-tower:before{content:"\e184"}
.glyphicon-stats:before{content:"\e185"}
.glyphicon-sd-video:before{content:"\e186"}
.glyphicon-hd-video:before{content:"\e187"}
.glyphicon-subtitles:before{content:"\e188"}
.glyphicon-sound-stereo:before{content:"\e189"}
.glyphicon-sound-dolby:before{content:"\e190"}
.glyphicon-sound-5-1:before{content:"\e191"}
.glyphicon-sound-6-1:before{content:"\e192"}
.glyphicon-sound-7-1:before{content:"\e193"}
.glyphicon-copyright-mark:before{content:"\e194"}
.glyphicon-registration-mark:before{content:"\e195"}
.glyphicon-cloud-download:before{content:"\e197"}
.glyphicon-cloud-upload:before{content:"\e198"}
.glyphicon-tree-conifer:before{content:"\e199"}
.glyphicon-tree-deciduous:before{content:"\e200"}
.glyphicon-cd:before{content:"\e201"}
.glyphicon-save-file:before{content:"\e202"}
.glyphicon-open-file:before{content:"\e203"}
.glyphicon-level-up:before{content:"\e204"}
.glyphicon-copy:before{content:"\e205"}
.glyphicon-paste:before{content:"\e206"}
.glyphicon-alert:before{content:"\e209"}
.glyphicon-equalizer:before{content:"\e210"}
.glyphicon-king:before{content:"\e211"}
.glyphicon-queen:before{content:"\e212"}
.glyphicon-pawn:before{content:"\e213"}
.glyphicon-bishop:before{content:"\e214"}
.glyphicon-knight:before{content:"\e215"}
.glyphicon-baby-formula:before{content:"\e216"}
.glyphicon-tent:before{content:"\26fa"}
.glyphicon-blackboard:before{content:"\e218"}
.glyphicon-bed:before{content:"\e219"}
.glyphicon-apple:before{content:"\f8ff"}
.glyphicon-erase:before{content:"\e221"}
.glyphicon-hourglass:before{content:"\231b"}
.glyphicon-lamp:before{content:"\e223"}
.glyphicon-duplicate:before{content:"\e224"}
.glyphicon-piggy-bank:before{content:"\e225"}
.glyphicon-scissors:before{content:"\e226"}
.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"}
.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"}
.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"}
.glyphicon-scale:before{content:"\e230"}
.glyphicon-ice-lolly:before{content:"\e231"}
.glyphicon-ice-lolly-tasted:before{content:"\e232"}
.glyphicon-education:before{content:"\e233"}
.glyphicon-option-horizontal:before{content:"\e234"}
.glyphicon-option-vertical:before{content:"\e235"}
.glyphicon-menu-hamburger:before{content:"\e236"}
.glyphicon-modal-window:before{content:"\e237"}
.glyphicon-oil:before{content:"\e238"}
.glyphicon-grain:before{content:"\e239"}
.glyphicon-sunglasses:before{content:"\e240"}
.glyphicon-text-size:before{content:"\e241"}
.glyphicon-text-color:before{content:"\e242"}
.glyphicon-text-background:before{content:"\e243"}
.glyphicon-object-align-top:before{content:"\e244"}
.glyphicon-object-align-bottom:before{content:"\e245"}
.glyphicon-object-align-horizontal:before{content:"\e246"}
.glyphicon-object-align-left:before{content:"\e247"}
.glyphicon-object-align-vertical:before{content:"\e248"}
.glyphicon-object-align-right:before{content:"\e249"}
.glyphicon-triangle-right:before{content:"\e250"}
.glyphicon-triangle-left:before{content:"\e251"}
.glyphicon-triangle-bottom:before{content:"\e252"}
.glyphicon-triangle-top:before{content:"\e253"}
.glyphicon-console:before{content:"\e254"}
.glyphicon-superscript:before{content:"\e255"}
.glyphicon-subscript:before{content:"\e256"}
.glyphicon-menu-left:before{content:"\e257"}
.glyphicon-menu-right:before{content:"\e258"}
.glyphicon-menu-down:before{content:"\e259"}
.glyphicon-menu-up:before{content:"\e260"}
*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
html{font-size:10px;-webkit-tap-highlight-color:transparent}
body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}
button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}
a{background-color:transparent;color:#337ab7;text-decoration:none}
a:focus,a:hover{color:#23527c;text-decoration:underline}
a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}
figure{margin:0}
.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}
.img-rounded{border-radius:6px}
.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:.2s ease-in-out;-o-transition:.2s ease-in-out;transition:.2s ease-in-out;display:inline-block;max-width:100%;height:auto}
.img-circle{border-radius:50%}
hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
[role=button]{cursor:pointer}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}
.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}
.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}
.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}
.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}
.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}
.h1,h1{font-size:36px}
.h2,h2{font-size:30px}
.h3,h3{font-size:24px}
.h4,h4{font-size:18px}
.h5,h5{font-size:14px}
.h6,h6{font-size:12px}
p{margin:0 0 10px}
.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}
@media (min-width:768px){
.lead{font-size:21px}
.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.dl-horizontal dd{margin-left:180px}
}
.small,small{font-size:85%}
.mark,mark{padding:.2em;background-color:#fcf8e3}
.text-left{text-align:left}
.text-right{text-align:right}
.text-center{text-align:center}
.text-justify{text-align:justify}
.text-nowrap{white-space:nowrap}
.text-lowercase{text-transform:lowercase}
.text-uppercase{text-transform:uppercase}
.text-capitalize{text-transform:capitalize}
.text-muted{color:#777}
.text-primary{color:#337ab7}
a.text-primary:focus,a.text-primary:hover{color:#286090}
.text-success{color:#3c763d}
a.text-success:focus,a.text-success:hover{color:#2b542c}
.text-info{color:#31708f}
a.text-info:focus,a.text-info:hover{color:#245269}
.text-warning{color:#8a6d3b}
a.text-warning:focus,a.text-warning:hover{color:#66512c}
.text-danger{color:#a94442}
a.text-danger:focus,a.text-danger:hover{color:#843534}
.bg-primary{color:#fff;background-color:#337ab7}
a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}
.bg-success{background-color:#dff0d8}
a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}
.bg-info{background-color:#d9edf7}
a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}
.bg-warning{background-color:#fcf8e3}
a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}
.bg-danger{background-color:#f2dede}
a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}
.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}
ol,ul{margin-top:0;margin-bottom:10px}
ol ol,ol ul,ul ol,ul ul{margin-bottom:0}
.list-unstyled{padding-left:0;list-style:none}
.list-inline{padding-left:0;list-style:none;margin-left:-5px}
.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}
dl{margin-top:0;margin-bottom:20px}
dd,dt{line-height:1.42857143}
dt{font-weight:700}
dd{margin-left:0}
abbr[data-original-title],abbr[title]{cursor:help}
.initialism{font-size:90%;text-transform:uppercase}
blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}
blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}
blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}
blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014 \00A0"}
.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}
.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}
.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\00A0 \2014"}
address{margin-bottom:20px;font-style:normal;line-height:1.42857143}
code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}
code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}
kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}
kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}
pre{overflow:auto;display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}
pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}
.pre-scrollable{max-height:340px;overflow-y:scroll}
.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}
@media (min-width:768px){
.container{width:750px}
}
@media (min-width:992px){
.container{width:970px}
}
@media (min-width:1200px){
.container{width:1170px}
}
.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}
.row{margin-right:-15px;margin-left:-15px}
.row-no-gutters{margin-right:0;margin-left:0}
.row-no-gutters [class*=col-]{padding-right:0;padding-left:0}
.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}
.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}
.col-xs-12{width:100%}
.col-xs-11{width:91.66666667%}
.col-xs-10{width:83.33333333%}
.col-xs-9{width:75%}
.col-xs-8{width:66.66666667%}
.col-xs-7{width:58.33333333%}
.col-xs-6{width:50%}
.col-xs-5{width:41.66666667%}
.col-xs-4{width:33.33333333%}
.col-xs-3{width:25%}
.col-xs-2{width:16.66666667%}
.col-xs-1{width:8.33333333%}
.col-xs-pull-12{right:100%}
.col-xs-pull-11{right:91.66666667%}
.col-xs-pull-10{right:83.33333333%}
.col-xs-pull-9{right:75%}
.col-xs-pull-8{right:66.66666667%}
.col-xs-pull-7{right:58.33333333%}
.col-xs-pull-6{right:50%}
.col-xs-pull-5{right:41.66666667%}
.col-xs-pull-4{right:33.33333333%}
.col-xs-pull-3{right:25%}
.col-xs-pull-2{right:16.66666667%}
.col-xs-pull-1{right:8.33333333%}
.col-xs-pull-0{right:auto}
.col-xs-push-12{left:100%}
.col-xs-push-11{left:91.66666667%}
.col-xs-push-10{left:83.33333333%}
.col-xs-push-9{left:75%}
.col-xs-push-8{left:66.66666667%}
.col-xs-push-7{left:58.33333333%}
.col-xs-push-6{left:50%}
.col-xs-push-5{left:41.66666667%}
.col-xs-push-4{left:33.33333333%}
.col-xs-push-3{left:25%}
.col-xs-push-2{left:16.66666667%}
.col-xs-push-1{left:8.33333333%}
.col-xs-push-0{left:auto}
.col-xs-offset-12{margin-left:100%}
.col-xs-offset-11{margin-left:91.66666667%}
.col-xs-offset-10{margin-left:83.33333333%}
.col-xs-offset-9{margin-left:75%}
.col-xs-offset-8{margin-left:66.66666667%}
.col-xs-offset-7{margin-left:58.33333333%}
.col-xs-offset-6{margin-left:50%}
.col-xs-offset-5{margin-left:41.66666667%}
.col-xs-offset-4{margin-left:33.33333333%}
.col-xs-offset-3{margin-left:25%}
.col-xs-offset-2{margin-left:16.66666667%}
.col-xs-offset-1{margin-left:8.33333333%}
.col-xs-offset-0{margin-left:0}
@media (min-width:768px){
.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}
.col-sm-12{width:100%}
.col-sm-11{width:91.66666667%}
.col-sm-10{width:83.33333333%}
.col-sm-9{width:75%}
.col-sm-8{width:66.66666667%}
.col-sm-7{width:58.33333333%}
.col-sm-6{width:50%}
.col-sm-5{width:41.66666667%}
.col-sm-4{width:33.33333333%}
.col-sm-3{width:25%}
.col-sm-2{width:16.66666667%}
.col-sm-1{width:8.33333333%}
.col-sm-pull-12{right:100%}
.col-sm-pull-11{right:91.66666667%}
.col-sm-pull-10{right:83.33333333%}
.col-sm-pull-9{right:75%}
.col-sm-pull-8{right:66.66666667%}
.col-sm-pull-7{right:58.33333333%}
.col-sm-pull-6{right:50%}
.col-sm-pull-5{right:41.66666667%}
.col-sm-pull-4{right:33.33333333%}
.col-sm-pull-3{right:25%}
.col-sm-pull-2{right:16.66666667%}
.col-sm-pull-1{right:8.33333333%}
.col-sm-pull-0{right:auto}
.col-sm-push-12{left:100%}
.col-sm-push-11{left:91.66666667%}
.col-sm-push-10{left:83.33333333%}
.col-sm-push-9{left:75%}
.col-sm-push-8{left:66.66666667%}
.col-sm-push-7{left:58.33333333%}
.col-sm-push-6{left:50%}
.col-sm-push-5{left:41.66666667%}
.col-sm-push-4{left:33.33333333%}
.col-sm-push-3{left:25%}
.col-sm-push-2{left:16.66666667%}
.col-sm-push-1{left:8.33333333%}
.col-sm-push-0{left:auto}
.col-sm-offset-12{margin-left:100%}
.col-sm-offset-11{margin-left:91.66666667%}
.col-sm-offset-10{margin-left:83.33333333%}
.col-sm-offset-9{margin-left:75%}
.col-sm-offset-8{margin-left:66.66666667%}
.col-sm-offset-7{margin-left:58.33333333%}
.col-sm-offset-6{margin-left:50%}
.col-sm-offset-5{margin-left:41.66666667%}
.col-sm-offset-4{margin-left:33.33333333%}
.col-sm-offset-3{margin-left:25%}
.col-sm-offset-2{margin-left:16.66666667%}
.col-sm-offset-1{margin-left:8.33333333%}
.col-sm-offset-0{margin-left:0}
}
@media (min-width:992px){
.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}
.col-md-12{width:100%}
.col-md-11{width:91.66666667%}
.col-md-10{width:83.33333333%}
.col-md-9{width:75%}
.col-md-8{width:66.66666667%}
.col-md-7{width:58.33333333%}
.col-md-6{width:50%}
.col-md-5{width:41.66666667%}
.col-md-4{width:33.33333333%}
.col-md-3{width:25%}
.col-md-2{width:16.66666667%}
.col-md-1{width:8.33333333%}
.col-md-pull-12{right:100%}
.col-md-pull-11{right:91.66666667%}
.col-md-pull-10{right:83.33333333%}
.col-md-pull-9{right:75%}
.col-md-pull-8{right:66.66666667%}
.col-md-pull-7{right:58.33333333%}
.col-md-pull-6{right:50%}
.col-md-pull-5{right:41.66666667%}
.col-md-pull-4{right:33.33333333%}
.col-md-pull-3{right:25%}
.col-md-pull-2{right:16.66666667%}
.col-md-pull-1{right:8.33333333%}
.col-md-pull-0{right:auto}
.col-md-push-12{left:100%}
.col-md-push-11{left:91.66666667%}
.col-md-push-10{left:83.33333333%}
.col-md-push-9{left:75%}
.col-md-push-8{left:66.66666667%}
.col-md-push-7{left:58.33333333%}
.col-md-push-6{left:50%}
.col-md-push-5{left:41.66666667%}
.col-md-push-4{left:33.33333333%}
.col-md-push-3{left:25%}
.col-md-push-2{left:16.66666667%}
.col-md-push-1{left:8.33333333%}
.col-md-push-0{left:auto}
.col-md-offset-12{margin-left:100%}
.col-md-offset-11{margin-left:91.66666667%}
.col-md-offset-10{margin-left:83.33333333%}
.col-md-offset-9{margin-left:75%}
.col-md-offset-8{margin-left:66.66666667%}
.col-md-offset-7{margin-left:58.33333333%}
.col-md-offset-6{margin-left:50%}
.col-md-offset-5{margin-left:41.66666667%}
.col-md-offset-4{margin-left:33.33333333%}
.col-md-offset-3{margin-left:25%}
.col-md-offset-2{margin-left:16.66666667%}
.col-md-offset-1{margin-left:8.33333333%}
.col-md-offset-0{margin-left:0}
}
@media (min-width:1200px){
.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}
.col-lg-12{width:100%}
.col-lg-11{width:91.66666667%}
.col-lg-10{width:83.33333333%}
.col-lg-9{width:75%}
.col-lg-8{width:66.66666667%}
.col-lg-7{width:58.33333333%}
.col-lg-6{width:50%}
.col-lg-5{width:41.66666667%}
.col-lg-4{width:33.33333333%}
.col-lg-3{width:25%}
.col-lg-2{width:16.66666667%}
.col-lg-1{width:8.33333333%}
.col-lg-pull-12{right:100%}
.col-lg-pull-11{right:91.66666667%}
.col-lg-pull-10{right:83.33333333%}
.col-lg-pull-9{right:75%}
.col-lg-pull-8{right:66.66666667%}
.col-lg-pull-7{right:58.33333333%}
.col-lg-pull-6{right:50%}
.col-lg-pull-5{right:41.66666667%}
.col-lg-pull-4{right:33.33333333%}
.col-lg-pull-3{right:25%}
.col-lg-pull-2{right:16.66666667%}
.col-lg-pull-1{right:8.33333333%}
.col-lg-pull-0{right:auto}
.col-lg-push-12{left:100%}
.col-lg-push-11{left:91.66666667%}
.col-lg-push-10{left:83.33333333%}
.col-lg-push-9{left:75%}
.col-lg-push-8{left:66.66666667%}
.col-lg-push-7{left:58.33333333%}
.col-lg-push-6{left:50%}
.col-lg-push-5{left:41.66666667%}
.col-lg-push-4{left:33.33333333%}
.col-lg-push-3{left:25%}
.col-lg-push-2{left:16.66666667%}
.col-lg-push-1{left:8.33333333%}
.col-lg-push-0{left:auto}
.col-lg-offset-12{margin-left:100%}
.col-lg-offset-11{margin-left:91.66666667%}
.col-lg-offset-10{margin-left:83.33333333%}
.col-lg-offset-9{margin-left:75%}
.col-lg-offset-8{margin-left:66.66666667%}
.col-lg-offset-7{margin-left:58.33333333%}
.col-lg-offset-6{margin-left:50%}
.col-lg-offset-5{margin-left:41.66666667%}
.col-lg-offset-4{margin-left:33.33333333%}
.col-lg-offset-3{margin-left:25%}
.col-lg-offset-2{margin-left:16.66666667%}
.col-lg-offset-1{margin-left:8.33333333%}
.col-lg-offset-0{margin-left:0}
}
table{border-collapse:collapse;border-spacing:0;background-color:transparent}
table col[class*=col-]{position:static;display:table-column;float:none}
table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}
caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}
th{text-align:left}
.table{width:100%;max-width:100%;margin-bottom:20px}
.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}
.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}
.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}
.table>tbody+tbody{border-top:2px solid #ddd}
.table .table{background-color:#fff}
.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}
.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}
.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}
.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}
.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}
.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}
.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}
.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}
.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}
.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}
.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}
.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}
.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}
.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}
.table-responsive{min-height:.01%;overflow-x:auto}
@media screen and (max-width:767px){
.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}
.table-responsive>.table{margin-bottom:0}
.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}
.table-responsive>.table-bordered{border:0}
.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}
.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}
.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}
}
fieldset{min-width:0;padding:0;margin:0;border:0}
legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}
label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}
input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none}
input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal}
fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}
input[type=file]{display:block}
input[type=range]{display:block;width:100%}
select[multiple],select[size]{height:auto}
input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}
output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}
.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}
.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}
.form-control::-moz-placeholder{color:#999;opacity:1}
.form-control:-ms-input-placeholder{color:#999}
.form-control::-webkit-input-placeholder{color:#999}
.form-control::-ms-expand{background-color:transparent;border:0}
.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}
.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}
textarea.form-control{height:auto}
@media screen and (-webkit-min-device-pixel-ratio:0){
input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}
.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}
.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}
}
.form-group{margin-bottom:15px}
.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}
.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}
.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}
.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px}
.checkbox+.checkbox,.radio+.radio{margin-top:-5px}
.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}
.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}
.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}
.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}
.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}
.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
select.input-sm{height:30px;line-height:30px}
select[multiple].input-sm,textarea.input-sm{height:auto}
.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
.form-group-sm select.form-control{height:30px;line-height:30px}
.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}
.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}
.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
select.input-lg{height:46px;line-height:46px}
select[multiple].input-lg,textarea.input-lg{height:auto}
.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
.form-group-lg select.form-control{height:46px;line-height:46px}
.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}
.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}
.has-feedback{position:relative}
.has-feedback .form-control{padding-right:42.5px}
.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}
.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}
.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}
.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}
.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}
.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}
.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}
.has-success .form-control-feedback{color:#3c763d}
.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}
.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}
.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}
.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}
.has-warning .form-control-feedback{color:#8a6d3b}
.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}
.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}
.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}
.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}
.has-error .form-control-feedback{color:#a94442}
.has-feedback label~.form-control-feedback{top:25px}
.has-feedback label.sr-only~.form-control-feedback{top:0}
.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}
.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}
.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}
.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}
.form-horizontal .has-feedback .form-control-feedback{right:15px}
@media (min-width:768px){
.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}
.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}
.form-inline .form-control-static{display:inline-block}
.form-inline .input-group{display:inline-table;vertical-align:middle}
.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}
.form-inline .input-group>.form-control{width:100%}
.form-inline .control-label{margin-bottom:0;vertical-align:middle}
.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}
.form-inline .checkbox label,.form-inline .radio label{padding-left:0}
.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}
.form-inline .has-feedback .form-control-feedback{top:0}
.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}
.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}
.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}
}
.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}
.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}
.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}
.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;-webkit-box-shadow:none;box-shadow:none}
a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}
.btn-default{color:#333;background-color:#fff;border-color:#ccc}
.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}
.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}
.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad}
.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}
.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}
.btn-default .badge{color:#fff;background-color:#333}
.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}
.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}
.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}
.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;background-image:none;border-color:#204d74}
.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}
.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}
.btn-primary .badge{color:#337ab7;background-color:#fff}
.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}
.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}
.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}
.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439}
.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}
.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}
.btn-success .badge{color:#5cb85c;background-color:#fff}
.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}
.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}
.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}
.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc}
.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}
.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}
.btn-info .badge{color:#5bc0de;background-color:#fff}
.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}
.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}
.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}
.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512}
.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}
.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}
.btn-warning .badge{color:#f0ad4e;background-color:#fff}
.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}
.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}
.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}
.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925}
.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}
.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}
.btn-danger .badge{color:#d9534f;background-color:#fff}
.btn-link{font-weight:400;color:#337ab7;border-radius:0}
.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}
.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}
.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}
.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}
.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}
.btn-block{display:block;width:100%}
.btn-block+.btn-block{margin-top:5px}
input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}
.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}
.fade.in{opacity:1}
.collapse{display:none}
.collapse.in{display:block}
tr.collapse.in{display:table-row}
tbody.collapse.in{display:table-row-group}
.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}
.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}
.dropdown,.dropup{position:relative}
.dropdown-toggle:focus{outline:0}
.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}
.dropdown-menu.pull-right{right:0;left:auto}
.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}
.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}
.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}
.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}
.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}
.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}
.open>.dropdown-menu{display:block}
.open>a{outline:0}
.dropdown-menu-right{right:0;left:auto}
.dropdown-menu-left{right:auto;left:0}
.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}
.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}
.pull-right>.dropdown-menu{right:0;left:auto}
.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed}
.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}
.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}
.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}
.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}
.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}
.btn-toolbar{margin-left:-5px}
.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}
.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}
.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}
.btn-group>.btn:first-child{margin-left:0}
.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}
.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}
.btn-group>.btn-group{float:left}
.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}
.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}
.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}
.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}
.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}
.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}
.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}
.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}
.btn .caret{margin-left:0}
.btn-lg .caret{border-width:5px 5px 0}
.dropup .btn-lg .caret{border-width:0 5px 5px}
.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}
.btn-group-vertical>.btn-group>.btn{float:none}
.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}
.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}
.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0}
.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px}
.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}
.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}
.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}
.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}
.btn-group-justified>.btn-group .btn{width:100%}
.btn-group-justified>.btn-group .dropdown-menu{left:auto}
[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}
.input-group{position:relative;display:table;border-collapse:separate}
.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}
.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}
.input-group .form-control:focus{z-index:3}
.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}
select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}
select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}
.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}
select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}
.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}
.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}
.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}
.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}
.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}
.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}
.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}
.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}
.input-group-addon:first-child{border-right:0}
.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}
.input-group-addon:last-child{border-left:0}
.input-group-btn{position:relative;font-size:0;white-space:nowrap}
.input-group-btn>.btn{position:relative}
.input-group-btn>.btn+.btn{margin-left:-1px}
.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}
.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}
.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}
.nav{padding-left:0;margin-bottom:0;list-style:none}
.nav>li{position:relative;display:block}
.nav>li>a{position:relative;display:block;padding:10px 15px}
.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}
.nav>li.disabled>a{color:#777}
.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}
.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}
.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}
.nav>li>a>img{max-width:none}
.nav-tabs{border-bottom:1px solid #ddd}
.nav-tabs>li{float:left;margin-bottom:-1px}
.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}
.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}
.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}
.nav-tabs.nav-justified{width:100%;border-bottom:0}
.nav-tabs.nav-justified>li{float:none}
.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center;margin-right:0;border-radius:4px}
.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}
.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}
.nav-pills>li{float:left}
.nav-pills>li>a{border-radius:4px}
.nav-pills>li+li{margin-left:2px}
.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}
.nav-stacked>li{float:none}
.nav-stacked>li+li{margin-top:2px;margin-left:0}
.nav-justified{width:100%}
.nav-justified>li{float:none}
.nav-justified>li>a{margin-bottom:5px;text-align:center}
.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}
@media (min-width:768px){
.navbar-right .dropdown-menu{right:0;left:auto}
.navbar-right .dropdown-menu-left{right:auto;left:0}
.nav-tabs.nav-justified>li{display:table-cell;width:1%}
.nav-tabs.nav-justified>li>a{margin-bottom:0;border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}
.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}
.nav-justified>li{display:table-cell;width:1%}
.nav-justified>li>a{margin-bottom:0}
}
.nav-tabs-justified{border-bottom:0}
.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}
.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}
@media (min-width:768px){
.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}
.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}
}
.tab-content>.tab-pane{display:none}
.tab-content>.active{display:block}
.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}
.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}
.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}
.navbar-collapse.in{overflow-y:auto}
.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}
.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}
@media (max-device-width:480px) and (orientation:landscape){
.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}
}
@media (min-width:768px){
.navbar{border-radius:4px}
.navbar-header{float:left}
.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}
.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}
.navbar-collapse.in{overflow-y:visible}
.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}
.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}
}
.navbar-fixed-top{top:0;border-width:0 0 1px}
.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}
.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}
.navbar-static-top{z-index:1000;border-width:0 0 1px}
.navbar-brand{float:left;height:50px;padding:15px;font-size:18px;line-height:20px}
.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}
.navbar-brand>img{display:block}
@media (min-width:768px){
.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}
.navbar-static-top{border-radius:0}
.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}
.navbar-toggle{display:none}
}
.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}
.navbar-toggle:focus{outline:0}
.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}
.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}
.navbar-nav{margin:7.5px -15px}
.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}
@media (max-width:767px){
.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}
.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}
.navbar-nav .open .dropdown-menu>li>a{line-height:20px}
.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}
}
@media (min-width:768px){
.navbar-nav{float:left;margin:0}
.navbar-nav>li{float:left}
.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}
.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}
.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}
.navbar-form .form-control-static{display:inline-block}
.navbar-form .input-group{display:inline-table;vertical-align:middle}
.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}
.navbar-form .input-group>.form-control{width:100%}
.navbar-form .control-label{margin-bottom:0;vertical-align:middle}
.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}
.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}
.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}
.navbar-form .has-feedback .form-control-feedback{top:0}
}
.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px}
@media (max-width:767px){
.navbar-form .form-group{margin-bottom:5px}
.navbar-form .form-group:last-child{margin-bottom:0}
.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}
.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}
.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}
.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}
}
@media (min-width:768px){
.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}
.navbar-text{float:left;margin-right:15px;margin-left:15px}
}
.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}
.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0}
.navbar-btn{margin-top:8px;margin-bottom:8px}
.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}
.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}
.navbar-text{margin-top:15px;margin-bottom:15px}
@media (min-width:768px){
.navbar-left{float:left!important}
.navbar-right{float:right!important;margin-right:-15px}
.navbar-right~.navbar-right{margin-right:0}
}
.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}
.navbar-default .navbar-brand{color:#777}
.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}
.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}
.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}
.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}
.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}
.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}
.navbar-default .navbar-toggle{border-color:#ddd}
.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}
.navbar-default .navbar-toggle .icon-bar{background-color:#888}
.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}
.navbar-default .navbar-link{color:#777}
.navbar-default .navbar-link:hover{color:#333}
.navbar-default .btn-link{color:#777}
.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}
.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}
.navbar-inverse{background-color:#222;border-color:#080808}
.navbar-inverse .navbar-brand{color:#9d9d9d}
.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}
.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}
.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}
.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}
.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}
.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}
@media (max-width:767px){
.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}
.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}
.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}
.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}
.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}
.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}
}
.navbar-inverse .navbar-toggle{border-color:#333}
.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}
.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}
.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}
.navbar-inverse .navbar-link{color:#9d9d9d}
.navbar-inverse .navbar-link:hover{color:#fff}
.navbar-inverse .btn-link{color:#9d9d9d}
.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}
.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}
.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}
.breadcrumb>li{display:inline-block}
.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}
.breadcrumb>.active{color:#777}
.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}
.pagination>li{display:inline}
.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}
.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}
.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}
.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}
.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}
.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}
.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}
.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}
.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}
.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}
.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}
.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}
.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}
.pager li{display:inline}
.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}
.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}
.pager .next>a,.pager .next>span{float:right}
.pager .previous>a,.pager .previous>span{float:left}
.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}
.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}
a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}
.label:empty{display:none}
.btn .label{position:relative;top:-1px}
.label-default{background-color:#777}
.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}
.label-primary{background-color:#337ab7}
.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}
.label-success{background-color:#5cb85c}
.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}
.label-info{background-color:#5bc0de}
.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}
.label-warning{background-color:#f0ad4e}
.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}
.label-danger{background-color:#d9534f}
.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}
.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}
.badge:empty{display:none}
.btn .badge{position:relative;top:-1px}
.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}
a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}
.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}
.list-group-item>.badge{float:right}
.list-group-item>.badge+.badge{margin-right:5px}
.nav-pills>li>a>.badge{margin-left:3px}
.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}
.jumbotron .h1,.jumbotron h1{color:inherit}
.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}
.jumbotron>hr{border-top-color:#d5d5d5}
.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}
.jumbotron .container{max-width:100%}
@media screen and (min-width:768px){
.jumbotron{padding-top:48px;padding-bottom:48px}
.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}
.jumbotron .h1,.jumbotron h1{font-size:63px}
}
.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}
.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}
a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}
.thumbnail .caption{padding:9px;color:#333}
.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}
.alert h4{margin-top:0;color:inherit}
.alert .alert-link{font-weight:700}
.alert>p,.alert>ul{margin-bottom:0}
.alert>p+p{margin-top:5px}
.alert-dismissable,.alert-dismissible{padding-right:35px}
.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}
.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}
.alert-success hr{border-top-color:#c9e2b3}
.alert-success .alert-link{color:#2b542c}
.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}
.alert-info hr{border-top-color:#a6e1ec}
.alert-info .alert-link{color:#245269}
.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}
.alert-warning hr{border-top-color:#f7e1b5}
.alert-warning .alert-link{color:#66512c}
.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}
.alert-danger hr{border-top-color:#e4b9c0}
.alert-danger .alert-link{color:#843534}
@-webkit-keyframes progress-bar-stripes{
from{background-position:40px 0}
to{background-position:0 0}
}
@-o-keyframes progress-bar-stripes{
from{background-position:40px 0}
to{background-position:0 0}
}
@keyframes progress-bar-stripes{
from{background-position:40px 0}
to{background-position:0 0}
}
.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}
.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s;-o-transition:width .6s;transition:width .6s}
.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}
.progress-bar.active,.progress.active .progress-bar{-webkit-animation:2s linear infinite progress-bar-stripes;-o-animation:2s linear infinite progress-bar-stripes;animation:2s linear infinite progress-bar-stripes}
.progress-bar-success{background-color:#5cb85c}
.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}
.progress-bar-info{background-color:#5bc0de}
.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}
.progress-bar-warning{background-color:#f0ad4e}
.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}
.progress-bar-danger{background-color:#d9534f}
.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}
.media{margin-top:15px}
.media:first-child{margin-top:0}
.media,.media-body{overflow:hidden;zoom:1}
.media-body{width:10000px}
.media-object{display:block}
.media-object.img-thumbnail{max-width:none}
.media-right,.media>.pull-right{padding-left:10px}
.media-left,.media>.pull-left{padding-right:10px}
.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}
.media-middle{vertical-align:middle}
.media-bottom{vertical-align:bottom}
.media-heading{margin-top:0;margin-bottom:5px}
.media-list{padding-left:0;list-style:none}
.list-group{padding-left:0;margin-bottom:20px}
.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}
.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}
.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}
.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}
.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}
.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}
.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}
.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}
.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}
a.list-group-item,button.list-group-item{color:#555}
a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}
a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}
button.list-group-item{width:100%;text-align:left}
.list-group-item-success{color:#3c763d;background-color:#dff0d8}
a.list-group-item-success,button.list-group-item-success{color:#3c763d}
a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}
a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}
a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}
.list-group-item-info{color:#31708f;background-color:#d9edf7}
a.list-group-item-info,button.list-group-item-info{color:#31708f}
a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}
a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}
a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}
.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}
a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}
a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}
a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}
a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}
.list-group-item-danger{color:#a94442;background-color:#f2dede}
a.list-group-item-danger,button.list-group-item-danger{color:#a94442}
a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}
a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}
a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}
.list-group-item-heading{margin-top:0;margin-bottom:5px}
.list-group-item-text{margin-bottom:0;line-height:1.3}
.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}
.panel-body{padding:15px}
.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}
.panel-heading>.dropdown .dropdown-toggle{color:inherit}
.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}
.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}
.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}
.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}
.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}
.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}
.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}
.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}
.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}
.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}
.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}
.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}
.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}
.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}
.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}
.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}
.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}
.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}
.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}
.panel>.table-responsive{margin-bottom:0;border:0}
.panel-group{margin-bottom:20px}
.panel-group .panel{margin-bottom:0;border-radius:4px}
.panel-group .panel+.panel{margin-top:5px}
.panel-group .panel-heading{border-bottom:0}
.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}
.panel-group .panel-footer{border-top:0}
.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}
.panel-default{border-color:#ddd}
.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}
.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}
.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}
.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}
.panel-primary{border-color:#337ab7}
.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}
.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}
.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}
.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}
.panel-success{border-color:#d6e9c6}
.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}
.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}
.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}
.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}
.panel-info{border-color:#bce8f1}
.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}
.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}
.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}
.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}
.panel-warning{border-color:#faebcc}
.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}
.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}
.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}
.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}
.panel-danger{border-color:#ebccd1}
.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}
.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}
.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}
.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}
.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}
.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}
.embed-responsive-16by9{padding-bottom:56.25%}
.embed-responsive-4by3{padding-bottom:75%}
.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}
.well blockquote{border-color:rgba(0,0,0,.15)}
.well-lg{padding:24px;border-radius:6px}
.well-sm{padding:9px;border-radius:3px}
.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}
.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}
button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}
.modal-open{overflow:hidden}
.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}
.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out}
.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}
.modal-open .modal{overflow-x:hidden;overflow-y:auto}
.modal-dialog{position:relative;width:auto;margin:10px}
.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}
.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}
.modal-backdrop.fade{opacity:0}
.modal-backdrop.in{opacity:.5}
.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}
.modal-header .close{margin-top:-2px}
.modal-title{margin:0;line-height:1.42857143}
.modal-body{position:relative;padding:15px}
.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}
.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}
.modal-footer .btn-group .btn+.btn{margin-left:-1px}
.modal-footer .btn-block+.btn-block{margin-left:0}
.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}
@media (min-width:768px){
.modal-dialog{width:600px;margin:30px auto}
.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}
.modal-sm{width:300px}
}
@media (min-width:992px){
.modal-lg{width:900px}
}
.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;opacity:0}
.tooltip.in{opacity:.9}
.tooltip.top{padding:5px 0;margin-top:-3px}
.tooltip.right{padding:0 5px;margin-left:3px}
.tooltip.bottom{padding:5px 0;margin-top:3px}
.tooltip.left{padding:0 5px;margin-left:-3px}
.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}
.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}
.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}
.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}
.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}
.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}
.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}
.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}
.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}
.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}
.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}
.popover.top{margin-top:-10px}
.popover.right{margin-left:10px}
.popover.bottom{margin-top:10px}
.popover.left{margin-left:-10px}
.popover>.arrow{border-width:11px}
.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}
.popover>.arrow:after{content:"";border-width:10px}
.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}
.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}
.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:rgba(0,0,0,.25);border-left-width:0}
.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}
.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,.25)}
.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}
.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:rgba(0,0,0,.25)}
.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}
.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}
.popover-content{padding:9px 14px}
.carousel{position:relative}
.carousel-inner{position:relative;width:100%;overflow:hidden}
.carousel-inner>.item{position:relative;display:none;-webkit-transition:left .6s ease-in-out;-o-transition:left .6s ease-in-out;transition:left .6s ease-in-out}
.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}
@media all and (transform-3d),(-webkit-transform-3d){
.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out,-o-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}
.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}
.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}
.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}
}
.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}
.carousel-inner>.active{left:0}
.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}
.carousel-inner>.next{left:100%}
.carousel-inner>.prev{left:-100%}
.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}
.carousel-inner>.active.left{left:-100%}
.carousel-inner>.active.right{left:100%}
.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);opacity:.5}
.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}
.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}
.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}
.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}
.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}
.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}
.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}
.carousel-control .icon-prev:before{content:"\2039"}
.carousel-control .icon-next:before{content:"\203a"}
.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}
.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}
.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}
.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}
.carousel-caption .btn{text-shadow:none}
@media screen and (min-width:768px){
.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}
.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}
.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}
.carousel-caption{right:20%;left:20%;padding-bottom:30px}
.carousel-indicators{bottom:20px}
}
.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}
.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}
.center-block{display:block;margin-right:auto;margin-left:auto}
.pull-right{float:right!important}
.pull-left{float:left!important}
.hide{display:none!important}
.show{display:block!important}
.invisible{visibility:hidden}
.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}
.hidden{display:none!important}
.affix{position:fixed}
@-ms-viewport{width:device-width}
.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}
@media (max-width:767px){
.visible-xs{display:block!important}
table.visible-xs{display:table!important}
tr.visible-xs{display:table-row!important}
td.visible-xs,th.visible-xs{display:table-cell!important}
.visible-xs-block{display:block!important}
.visible-xs-inline{display:inline!important}
.visible-xs-inline-block{display:inline-block!important}
}
@media (min-width:768px) and (max-width:991px){
.visible-sm{display:block!important}
table.visible-sm{display:table!important}
tr.visible-sm{display:table-row!important}
td.visible-sm,th.visible-sm{display:table-cell!important}
.visible-sm-block{display:block!important}
.visible-sm-inline{display:inline!important}
.visible-sm-inline-block{display:inline-block!important}
}
@media (min-width:992px) and (max-width:1199px){
.visible-md{display:block!important}
table.visible-md{display:table!important}
tr.visible-md{display:table-row!important}
td.visible-md,th.visible-md{display:table-cell!important}
.visible-md-block{display:block!important}
.visible-md-inline{display:inline!important}
.visible-md-inline-block{display:inline-block!important}
}
@media (min-width:1200px){
.visible-lg{display:block!important}
table.visible-lg{display:table!important}
tr.visible-lg{display:table-row!important}
td.visible-lg,th.visible-lg{display:table-cell!important}
.visible-lg-block{display:block!important}
.visible-lg-inline{display:inline!important}
.visible-lg-inline-block{display:inline-block!important}
.hidden-lg{display:none!important}
}
@media (max-width:767px){
.hidden-xs{display:none!important}
}
@media (min-width:768px) and (max-width:991px){
.hidden-sm{display:none!important}
}
@media (min-width:992px) and (max-width:1199px){
.hidden-md{display:none!important}
}
.visible-print{display:none!important}
@media print{
.visible-print{display:block!important}
table.visible-print{display:table!important}
tr.visible-print{display:table-row!important}
td.visible-print,th.visible-print{display:table-cell!important}
}
.visible-print-block{display:none!important}
@media print{
.visible-print-block{display:block!important}
}
.visible-print-inline{display:none!important}
@media print{
.visible-print-inline{display:inline!important}
}
.visible-print-inline-block{display:none!important}
@media print{
.visible-print-inline-block{display:inline-block!important}
.hidden-print{display:none!important}
}
.hljs{display:block;background:#fff;padding:.5em;color:#333;overflow-x:auto}
.hljs-comment,.hljs-meta{color:#969896}
.hljs-emphasis,.hljs-quote,.hljs-string,.hljs-strong,.hljs-template-variable,.hljs-variable{color:#df5000}
.hljs-keyword,.hljs-selector-tag,.hljs-type{color:#a71d5d}
.hljs-attribute,.hljs-bullet,.hljs-literal,.hljs-symbol{color:#0086b3}
.hljs-name,.hljs-section{color:#63a35c}
.hljs-tag{color:#333}
.hljs-attr,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-selector-pseudo,.hljs-title{color:#795da3}
.hljs-addition{color:#55a532;background-color:#eaffea}
.hljs-deletion{color:#bd2c00;background-color:#ffecec}
.hljs-link{text-decoration:underline}
```
|
/content/code_sandbox/docs/styles/docfx.vendor.css
|
css
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 33,853
|
```yaml
### YamlMime:XRefMap
sorted: true
references:
- uid: System
name: System
href: api/System.html
commentId: N:System
fullName: System
nameWithType: System
- uid: System.Linq.Dynamic.Core
name: System.Linq.Dynamic.Core
href: api/System.Linq.Dynamic.Core.html
commentId: N:System.Linq.Dynamic.Core
fullName: System.Linq.Dynamic.Core
nameWithType: System.Linq.Dynamic.Core
- uid: System.Linq.Dynamic.Core.Config
name: System.Linq.Dynamic.Core.Config
href: api/System.Linq.Dynamic.Core.Config.html
commentId: N:System.Linq.Dynamic.Core.Config
fullName: System.Linq.Dynamic.Core.Config
nameWithType: System.Linq.Dynamic.Core.Config
- uid: System.Linq.Dynamic.Core.Config.StringLiteralParsingType
name: StringLiteralParsingType
href: api/System.Linq.Dynamic.Core.Config.StringLiteralParsingType.html
commentId: T:System.Linq.Dynamic.Core.Config.StringLiteralParsingType
fullName: System.Linq.Dynamic.Core.Config.StringLiteralParsingType
nameWithType: StringLiteralParsingType
- uid: System.Linq.Dynamic.Core.Config.StringLiteralParsingType.Default
name: Default
href: api/System.Linq.Dynamic.Core.Config.StringLiteralParsingType.html#your_sha256_hash
commentId: F:System.Linq.Dynamic.Core.Config.StringLiteralParsingType.Default
fullName: System.Linq.Dynamic.Core.Config.StringLiteralParsingType.Default
nameWithType: StringLiteralParsingType.Default
- uid: System.Linq.Dynamic.Core.Config.StringLiteralParsingType.EscapeDoubleQuoteByTwoDoubleQuotes
name: EscapeDoubleQuoteByTwoDoubleQuotes
href: api/System.Linq.Dynamic.Core.Config.StringLiteralParsingType.html#your_sha256_hashoubleQuoteByTwoDoubleQuotes
commentId: F:System.Linq.Dynamic.Core.Config.StringLiteralParsingType.EscapeDoubleQuoteByTwoDoubleQuotes
fullName: System.Linq.Dynamic.Core.Config.StringLiteralParsingType.EscapeDoubleQuoteByTwoDoubleQuotes
nameWithType: StringLiteralParsingType.EscapeDoubleQuoteByTwoDoubleQuotes
- uid: System.Linq.Dynamic.Core.CustomTypeProviders
name: System.Linq.Dynamic.Core.CustomTypeProviders
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.html
commentId: N:System.Linq.Dynamic.Core.CustomTypeProviders
fullName: System.Linq.Dynamic.Core.CustomTypeProviders
nameWithType: System.Linq.Dynamic.Core.CustomTypeProviders
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider
name: AbstractDynamicLinqCustomTypeProvider
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html
commentId: T:System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider
nameWithType: AbstractDynamicLinqCustomTypeProvider
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})
name: FindTypesMarkedWithDynamicLinqTypeAttribute(IEnumerable<Assembly>)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hashyour_sha256_hash__
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})
name.vb: FindTypesMarkedWithDynamicLinqTypeAttribute(IEnumerable(Of Assembly))
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable<System.Reflection.Assembly>)
fullName.vb: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable(Of System.Reflection.Assembly))
nameWithType: AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute(IEnumerable<Assembly>)
nameWithType.vb: AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute(IEnumerable(Of Assembly))
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute*
name: FindTypesMarkedWithDynamicLinqTypeAttribute
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashCustomTypeProvider_FindTypesMarkedWithDynamicLinqTypeAttribute_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute
nameWithType: AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})
name: GetAssemblyTypesWithDynamicLinqTypeAttribute(IEnumerable<Assembly>)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hashyour_sha256_hashy__
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})
name.vb: GetAssemblyTypesWithDynamicLinqTypeAttribute(IEnumerable(Of Assembly))
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable<System.Reflection.Assembly>)
fullName.vb: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable(Of System.Reflection.Assembly))
nameWithType: AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute(IEnumerable<Assembly>)
nameWithType.vb: AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute(IEnumerable(Of Assembly))
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute*
name: GetAssemblyTypesWithDynamicLinqTypeAttribute
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hash
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute
nameWithType: AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveType(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},System.String)
name: ResolveType(IEnumerable<Assembly>, String)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hashrable_System_Reflection_Assembly__System_String_
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveType(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},System.String)
name.vb: ResolveType(IEnumerable(Of Assembly), String)
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveType(System.Collections.Generic.IEnumerable<System.Reflection.Assembly>, System.String)
fullName.vb: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveType(System.Collections.Generic.IEnumerable(Of System.Reflection.Assembly), System.String)
nameWithType: AbstractDynamicLinqCustomTypeProvider.ResolveType(IEnumerable<Assembly>, String)
nameWithType.vb: AbstractDynamicLinqCustomTypeProvider.ResolveType(IEnumerable(Of Assembly), String)
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveType*
name: ResolveType
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashCustomTypeProvider_ResolveType_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveType
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveType
nameWithType: AbstractDynamicLinqCustomTypeProvider.ResolveType
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},System.String)
name: ResolveTypeBySimpleName(IEnumerable<Assembly>, String)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hashneric_IEnumerable_System_Reflection_Assembly__System_String_
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},System.String)
name.vb: ResolveTypeBySimpleName(IEnumerable(Of Assembly), String)
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.Collections.Generic.IEnumerable<System.Reflection.Assembly>, System.String)
fullName.vb: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.Collections.Generic.IEnumerable(Of System.Reflection.Assembly), System.String)
nameWithType: AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(IEnumerable<Assembly>, String)
nameWithType.vb: AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(IEnumerable(Of Assembly), String)
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName*
name: ResolveTypeBySimpleName
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashCustomTypeProvider_ResolveTypeBySimpleName_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName
nameWithType: AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider
name: DefaultDynamicLinqCustomTypeProvider
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html
commentId: T:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider
nameWithType: DefaultDynamicLinqCustomTypeProvider
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor(System.Boolean)
name: DefaultDynamicLinqCustomTypeProvider(Boolean)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider__ctor_System_Boolean_
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor(System.Boolean)
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.DefaultDynamicLinqCustomTypeProvider(System.Boolean)
nameWithType: DefaultDynamicLinqCustomTypeProvider.DefaultDynamicLinqCustomTypeProvider(Boolean)
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean)
name: DefaultDynamicLinqCustomTypeProvider(ParsingConfig, Boolean)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hashystem_Boolean_
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean)
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.DefaultDynamicLinqCustomTypeProvider(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean)
nameWithType: DefaultDynamicLinqCustomTypeProvider.DefaultDynamicLinqCustomTypeProvider(ParsingConfig, Boolean)
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor*
name: DefaultDynamicLinqCustomTypeProvider
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider__ctor_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.DefaultDynamicLinqCustomTypeProvider
nameWithType: DefaultDynamicLinqCustomTypeProvider.DefaultDynamicLinqCustomTypeProvider
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetCustomTypes
name: GetCustomTypes()
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider_GetCustomTypes
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetCustomTypes
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetCustomTypes()
nameWithType: DefaultDynamicLinqCustomTypeProvider.GetCustomTypes()
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetCustomTypes*
name: GetCustomTypes
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider_GetCustomTypes_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetCustomTypes
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetCustomTypes
nameWithType: DefaultDynamicLinqCustomTypeProvider.GetCustomTypes
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods
name: GetExtensionMethods()
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider_GetExtensionMethods
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods()
nameWithType: DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods()
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods*
name: GetExtensionMethods
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider_GetExtensionMethods_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods
nameWithType: DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveType(System.String)
name: ResolveType(String)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider_ResolveType_System_String_
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveType(System.String)
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveType(System.String)
nameWithType: DefaultDynamicLinqCustomTypeProvider.ResolveType(String)
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveType*
name: ResolveType
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider_ResolveType_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveType
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveType
nameWithType: DefaultDynamicLinqCustomTypeProvider.ResolveType
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.String)
name: ResolveTypeBySimpleName(String)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider_ResolveTypeBySimpleName_System_String_
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.String)
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.String)
nameWithType: DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(String)
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName*
name: ResolveTypeBySimpleName
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html#your_sha256_hashustomTypeProvider_ResolveTypeBySimpleName_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName
nameWithType: DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute
name: DynamicLinqTypeAttribute
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute.html
commentId: T:System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute
nameWithType: DynamicLinqTypeAttribute
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider
name: IDynamicLinkCustomTypeProvider
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider.html
commentId: T:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider
nameWithType: IDynamicLinkCustomTypeProvider
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider
name: IDynamicLinqCustomTypeProvider
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html
commentId: T:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider
nameWithType: IDynamicLinqCustomTypeProvider
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetCustomTypes
name: GetCustomTypes()
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_GetCustomTypes
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetCustomTypes
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetCustomTypes()
nameWithType: IDynamicLinqCustomTypeProvider.GetCustomTypes()
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetCustomTypes*
name: GetCustomTypes
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_GetCustomTypes_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetCustomTypes
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetCustomTypes
nameWithType: IDynamicLinqCustomTypeProvider.GetCustomTypes
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetExtensionMethods
name: GetExtensionMethods()
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_GetExtensionMethods
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetExtensionMethods
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetExtensionMethods()
nameWithType: IDynamicLinqCustomTypeProvider.GetExtensionMethods()
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetExtensionMethods*
name: GetExtensionMethods
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_GetExtensionMethods_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetExtensionMethods
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetExtensionMethods
nameWithType: IDynamicLinqCustomTypeProvider.GetExtensionMethods
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveType(System.String)
name: ResolveType(String)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_ResolveType_System_String_
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveType(System.String)
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveType(System.String)
nameWithType: IDynamicLinqCustomTypeProvider.ResolveType(String)
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveType*
name: ResolveType
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_ResolveType_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveType
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveType
nameWithType: IDynamicLinqCustomTypeProvider.ResolveType
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.String)
name: ResolveTypeBySimpleName(String)
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_ResolveTypeBySimpleName_System_String_
commentId: M:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.String)
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.String)
nameWithType: IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(String)
- uid: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName*
name: ResolveTypeBySimpleName
href: api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_ResolveTypeBySimpleName_
commentId: Overload:System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName
isSpec: "True"
fullName: System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName
nameWithType: IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName
- uid: System.Linq.Dynamic.Core.DefaultQueryableAnalyzer
name: DefaultQueryableAnalyzer
href: api/System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.html
commentId: T:System.Linq.Dynamic.Core.DefaultQueryableAnalyzer
fullName: System.Linq.Dynamic.Core.DefaultQueryableAnalyzer
nameWithType: DefaultQueryableAnalyzer
- uid: System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.SupportsLinqToObjects(System.Linq.IQueryable,System.Linq.IQueryProvider)
name: SupportsLinqToObjects(IQueryable, IQueryProvider)
href: api/System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.html#your_sha256_hashObjects_System_Linq_IQueryable_System_Linq_IQueryProvider_
commentId: M:System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.SupportsLinqToObjects(System.Linq.IQueryable,System.Linq.IQueryProvider)
fullName: System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.SupportsLinqToObjects(System.Linq.IQueryable, System.Linq.IQueryProvider)
nameWithType: DefaultQueryableAnalyzer.SupportsLinqToObjects(IQueryable, IQueryProvider)
- uid: System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.SupportsLinqToObjects*
name: SupportsLinqToObjects
href: api/System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.html#your_sha256_hashObjects_
commentId: Overload:System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.SupportsLinqToObjects
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.SupportsLinqToObjects
nameWithType: DefaultQueryableAnalyzer.SupportsLinqToObjects
- uid: System.Linq.Dynamic.Core.DynamicClass
name: DynamicClass
href: api/System.Linq.Dynamic.Core.DynamicClass.html
commentId: T:System.Linq.Dynamic.Core.DynamicClass
fullName: System.Linq.Dynamic.Core.DynamicClass
nameWithType: DynamicClass
- uid: System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue(System.String)
name: GetDynamicPropertyValue(String)
href: api/System.Linq.Dynamic.Core.DynamicClass.html#your_sha256_hashstem_String_
commentId: M:System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue(System.String)
fullName: System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue(System.String)
nameWithType: DynamicClass.GetDynamicPropertyValue(String)
- uid: System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue*
name: GetDynamicPropertyValue
href: api/System.Linq.Dynamic.Core.DynamicClass.html#System_Linq_Dynamic_Core_DynamicClass_GetDynamicPropertyValue_
commentId: Overload:System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue
nameWithType: DynamicClass.GetDynamicPropertyValue
- uid: System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue``1(System.String)
name: GetDynamicPropertyValue<T>(String)
href: api/System.Linq.Dynamic.Core.DynamicClass.html#your_sha256_hash_System_String_
commentId: M:System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue``1(System.String)
name.vb: GetDynamicPropertyValue(Of T)(String)
fullName: System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue<T>(System.String)
fullName.vb: System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue(Of T)(System.String)
nameWithType: DynamicClass.GetDynamicPropertyValue<T>(String)
nameWithType.vb: DynamicClass.GetDynamicPropertyValue(Of T)(String)
- uid: System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue(System.String,System.Object)
name: SetDynamicPropertyValue(String, Object)
href: api/System.Linq.Dynamic.Core.DynamicClass.html#your_sha256_hashstem_String_System_Object_
commentId: M:System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue(System.String,System.Object)
fullName: System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue(System.String, System.Object)
nameWithType: DynamicClass.SetDynamicPropertyValue(String, Object)
- uid: System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue*
name: SetDynamicPropertyValue
href: api/System.Linq.Dynamic.Core.DynamicClass.html#System_Linq_Dynamic_Core_DynamicClass_SetDynamicPropertyValue_
commentId: Overload:System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue
nameWithType: DynamicClass.SetDynamicPropertyValue
- uid: System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue``1(System.String,``0)
name: SetDynamicPropertyValue<T>(String, T)
href: api/System.Linq.Dynamic.Core.DynamicClass.html#your_sha256_hash_System_String___0_
commentId: M:System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue``1(System.String,``0)
name.vb: SetDynamicPropertyValue(Of T)(String, T)
fullName: System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue<T>(System.String, T)
fullName.vb: System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue(Of T)(System.String, T)
nameWithType: DynamicClass.SetDynamicPropertyValue<T>(String, T)
nameWithType.vb: DynamicClass.SetDynamicPropertyValue(Of T)(String, T)
- uid: System.Linq.Dynamic.Core.DynamicClassFactory
name: DynamicClassFactory
href: api/System.Linq.Dynamic.Core.DynamicClassFactory.html
commentId: T:System.Linq.Dynamic.Core.DynamicClassFactory
fullName: System.Linq.Dynamic.Core.DynamicClassFactory
nameWithType: DynamicClassFactory
- uid: System.Linq.Dynamic.Core.DynamicClassFactory.CreateGenericComparerType(System.Type,System.Type)
name: CreateGenericComparerType(Type, Type)
href: api/System.Linq.Dynamic.Core.DynamicClassFactory.html#your_sha256_hasherType_System_Type_System_Type_
commentId: M:System.Linq.Dynamic.Core.DynamicClassFactory.CreateGenericComparerType(System.Type,System.Type)
fullName: System.Linq.Dynamic.Core.DynamicClassFactory.CreateGenericComparerType(System.Type, System.Type)
nameWithType: DynamicClassFactory.CreateGenericComparerType(Type, Type)
- uid: System.Linq.Dynamic.Core.DynamicClassFactory.CreateGenericComparerType*
name: CreateGenericComparerType
href: api/System.Linq.Dynamic.Core.DynamicClassFactory.html#your_sha256_hasherType_
commentId: Overload:System.Linq.Dynamic.Core.DynamicClassFactory.CreateGenericComparerType
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicClassFactory.CreateGenericComparerType
nameWithType: DynamicClassFactory.CreateGenericComparerType
- uid: System.Linq.Dynamic.Core.DynamicClassFactory.CreateType(System.Collections.Generic.IList{System.Linq.Dynamic.Core.DynamicProperty},System.Boolean)
name: CreateType(IList<DynamicProperty>, Boolean)
href: api/System.Linq.Dynamic.Core.DynamicClassFactory.html#your_sha256_hashyour_sha256_hashy__System_Boolean_
commentId: M:System.Linq.Dynamic.Core.DynamicClassFactory.CreateType(System.Collections.Generic.IList{System.Linq.Dynamic.Core.DynamicProperty},System.Boolean)
name.vb: CreateType(IList(Of DynamicProperty), Boolean)
fullName: System.Linq.Dynamic.Core.DynamicClassFactory.CreateType(System.Collections.Generic.IList<System.Linq.Dynamic.Core.DynamicProperty>, System.Boolean)
fullName.vb: System.Linq.Dynamic.Core.DynamicClassFactory.CreateType(System.Collections.Generic.IList(Of System.Linq.Dynamic.Core.DynamicProperty), System.Boolean)
nameWithType: DynamicClassFactory.CreateType(IList<DynamicProperty>, Boolean)
nameWithType.vb: DynamicClassFactory.CreateType(IList(Of DynamicProperty), Boolean)
- uid: System.Linq.Dynamic.Core.DynamicClassFactory.CreateType*
name: CreateType
href: api/System.Linq.Dynamic.Core.DynamicClassFactory.html#System_Linq_Dynamic_Core_DynamicClassFactory_CreateType_
commentId: Overload:System.Linq.Dynamic.Core.DynamicClassFactory.CreateType
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicClassFactory.CreateType
nameWithType: DynamicClassFactory.CreateType
- uid: System.Linq.Dynamic.Core.DynamicEnumerableExtensions
name: DynamicEnumerableExtensions
href: api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html
commentId: T:System.Linq.Dynamic.Core.DynamicEnumerableExtensions
fullName: System.Linq.Dynamic.Core.DynamicEnumerableExtensions
nameWithType: DynamicEnumerableExtensions
- uid: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray(System.Collections.IEnumerable)
name: ToDynamicArray(IEnumerable)
href: api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html#your_sha256_hashray_System_Collections_IEnumerable_
commentId: M:System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray(System.Collections.IEnumerable)
fullName: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray(System.Collections.IEnumerable)
nameWithType: DynamicEnumerableExtensions.ToDynamicArray(IEnumerable)
- uid: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray(System.Collections.IEnumerable,System.Type)
name: ToDynamicArray(IEnumerable, Type)
href: api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html#your_sha256_hashray_System_Collections_IEnumerable_System_Type_
commentId: M:System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray(System.Collections.IEnumerable,System.Type)
fullName: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray(System.Collections.IEnumerable, System.Type)
nameWithType: DynamicEnumerableExtensions.ToDynamicArray(IEnumerable, Type)
- uid: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray*
name: ToDynamicArray
href: api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html#your_sha256_hashray_
commentId: Overload:System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray
nameWithType: DynamicEnumerableExtensions.ToDynamicArray
- uid: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray``1(System.Collections.IEnumerable)
name: ToDynamicArray<T>(IEnumerable)
href: api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html#your_sha256_hashray__1_System_Collections_IEnumerable_
commentId: M:System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray``1(System.Collections.IEnumerable)
name.vb: ToDynamicArray(Of T)(IEnumerable)
fullName: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray<T>(System.Collections.IEnumerable)
fullName.vb: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray(Of T)(System.Collections.IEnumerable)
nameWithType: DynamicEnumerableExtensions.ToDynamicArray<T>(IEnumerable)
nameWithType.vb: DynamicEnumerableExtensions.ToDynamicArray(Of T)(IEnumerable)
- uid: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList(System.Collections.IEnumerable)
name: ToDynamicList(IEnumerable)
href: api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html#your_sha256_hashst_System_Collections_IEnumerable_
commentId: M:System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList(System.Collections.IEnumerable)
fullName: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList(System.Collections.IEnumerable)
nameWithType: DynamicEnumerableExtensions.ToDynamicList(IEnumerable)
- uid: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList(System.Collections.IEnumerable,System.Type)
name: ToDynamicList(IEnumerable, Type)
href: api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html#your_sha256_hashst_System_Collections_IEnumerable_System_Type_
commentId: M:System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList(System.Collections.IEnumerable,System.Type)
fullName: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList(System.Collections.IEnumerable, System.Type)
nameWithType: DynamicEnumerableExtensions.ToDynamicList(IEnumerable, Type)
- uid: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList*
name: ToDynamicList
href: api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html#your_sha256_hashst_
commentId: Overload:System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList
nameWithType: DynamicEnumerableExtensions.ToDynamicList
- uid: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList``1(System.Collections.IEnumerable)
name: ToDynamicList<T>(IEnumerable)
href: api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html#your_sha256_hashst__1_System_Collections_IEnumerable_
commentId: M:System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList``1(System.Collections.IEnumerable)
name.vb: ToDynamicList(Of T)(IEnumerable)
fullName: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList<T>(System.Collections.IEnumerable)
fullName.vb: System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList(Of T)(System.Collections.IEnumerable)
nameWithType: DynamicEnumerableExtensions.ToDynamicList<T>(IEnumerable)
nameWithType.vb: DynamicEnumerableExtensions.ToDynamicList(Of T)(IEnumerable)
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser
name: DynamicExpressionParser
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html
commentId: T:System.Linq.Dynamic.Core.DynamicExpressionParser
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser
nameWithType: DynamicExpressionParser
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name: ParseLambda(Boolean, ParameterExpression[], Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hash_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name.vb: ParseLambda(Boolean, ParameterExpression(), Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean, System.Linq.Expressions.ParameterExpression[], System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean, System.Linq.Expressions.ParameterExpression(), System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Boolean, ParameterExpression[], Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Boolean, ParameterExpression(), Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean,System.Type,System.Type,System.String,System.Object[])
name: ParseLambda(Boolean, Type, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hash__
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean,System.Type,System.Type,System.String,System.Object[])
name.vb: ParseLambda(Boolean, Type, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean, System.Type, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean, System.Type, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Boolean, Type, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Boolean, Type, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name: ParseLambda(ParsingConfig, Boolean, ParameterExpression[], Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashyour_sha256_hashm_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name.vb: ParseLambda(ParsingConfig, Boolean, ParameterExpression(), Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Linq.Expressions.ParameterExpression[], System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Linq.Expressions.ParameterExpression(), System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(ParsingConfig, Boolean, ParameterExpression[], Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(ParsingConfig, Boolean, ParameterExpression(), Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])
name: ParseLambda(ParsingConfig, Boolean, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashystem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])
name.vb: ParseLambda(ParsingConfig, Boolean, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(ParsingConfig, Boolean, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(ParsingConfig, Boolean, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])
name: ParseLambda(ParsingConfig, Boolean, Type, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashystem_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])
name.vb: ParseLambda(ParsingConfig, Boolean, Type, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Type, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Type, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(ParsingConfig, Boolean, Type, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(ParsingConfig, Boolean, Type, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name: ParseLambda(ParsingConfig, ParameterExpression[], Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashmeterExpression___System_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name.vb: ParseLambda(ParsingConfig, ParameterExpression(), Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Linq.Expressions.ParameterExpression[], System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Linq.Expressions.ParameterExpression(), System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(ParsingConfig, ParameterExpression[], Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(ParsingConfig, ParameterExpression(), Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
name: ParseLambda(ParsingConfig, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashstem_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
name.vb: ParseLambda(ParsingConfig, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(ParsingConfig, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(ParsingConfig, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])
name: ParseLambda(ParsingConfig, Type, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])
name.vb: ParseLambda(ParsingConfig, Type, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(ParsingConfig, Type, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(ParsingConfig, Type, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name: ParseLambda(ParameterExpression[], Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashring_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name.vb: ParseLambda(ParameterExpression(), Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Expressions.ParameterExpression[], System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Expressions.ParameterExpression(), System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(ParameterExpression[], Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(ParameterExpression(), Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name: ParseLambda(Type, ParsingConfig, Boolean, ParameterExpression[], Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashyour_sha256_hashString_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name.vb: ParseLambda(Type, ParsingConfig, Boolean, ParameterExpression(), Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Linq.Expressions.ParameterExpression[], System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Linq.Expressions.ParameterExpression(), System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Boolean, ParameterExpression[], Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Boolean, ParameterExpression(), Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])
name: ParseLambda(Type, ParsingConfig, Boolean, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashystem_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])
name.vb: ParseLambda(Type, ParsingConfig, Boolean, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Boolean, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Boolean, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])
name: ParseLambda(Type, ParsingConfig, Boolean, Type, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashystem_Type_System_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])
name.vb: ParseLambda(Type, ParsingConfig, Boolean, Type, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Type, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Type, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Boolean, Type, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Boolean, Type, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name: ParseLambda(Type, ParsingConfig, ParameterExpression[], Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashyour_sha256_hashbject___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name.vb: ParseLambda(Type, ParsingConfig, ParameterExpression(), Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Linq.Expressions.ParameterExpression[], System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Linq.Expressions.ParameterExpression(), System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, ParameterExpression[], Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, ParameterExpression(), Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
name: ParseLambda(Type, ParsingConfig, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
name.vb: ParseLambda(Type, ParsingConfig, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])
name: ParseLambda(Type, ParsingConfig, Type, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashem_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])
name.vb: ParseLambda(Type, ParsingConfig, Type, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Type, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Type, ParsingConfig, Type, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name: ParseLambda(Type, ParameterExpression[], Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashpe_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])
name.vb: ParseLambda(Type, ParameterExpression(), Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Expressions.ParameterExpression[], System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Linq.Expressions.ParameterExpression(), System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Type, ParameterExpression[], Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Type, ParameterExpression(), Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.String,System.Object[])
name: ParseLambda(Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashtem_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.String,System.Object[])
name.vb: ParseLambda(Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Type,System.String,System.Object[])
name: ParseLambda(Type, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashtem_Type_System_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Type,System.String,System.Object[])
name.vb: ParseLambda(Type, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type, System.Type, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda(Type, Type, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Type, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*
name: ParseLambda
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_
commentId: Overload:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda
nameWithType: DynamicExpressionParser.ParseLambda
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])
name: ParseLambda<TResult>(ParsingConfig, Boolean, ParameterExpression[], String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashyour_sha256_hash__
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])
name.vb: ParseLambda(Of TResult)(ParsingConfig, Boolean, ParameterExpression(), String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda<TResult>(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Linq.Expressions.ParameterExpression[], System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(Of TResult)(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Linq.Expressions.ParameterExpression(), System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda<TResult>(ParsingConfig, Boolean, ParameterExpression[], String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Of TResult)(ParsingConfig, Boolean, ParameterExpression(), String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
name: ParseLambda<TResult>(ParsingConfig, Boolean, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashing_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
name.vb: ParseLambda(Of TResult)(ParsingConfig, Boolean, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda<TResult>(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(Of TResult)(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda<TResult>(ParsingConfig, Boolean, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Of TResult)(ParsingConfig, Boolean, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])
name: ParseLambda<TResult>(Type, ParsingConfig, Boolean, ParameterExpression[], String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashyour_sha256_hashstem_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])
name.vb: ParseLambda(Of TResult)(Type, ParsingConfig, Boolean, ParameterExpression(), String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda<TResult>(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Linq.Expressions.ParameterExpression[], System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(Of TResult)(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.Linq.Expressions.ParameterExpression(), System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda<TResult>(Type, ParsingConfig, Boolean, ParameterExpression[], String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Of TResult)(Type, ParsingConfig, Boolean, ParameterExpression(), String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
name: ParseLambda<TResult>(Type, ParsingConfig, Boolean, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashn_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
name.vb: ParseLambda(Of TResult)(Type, ParsingConfig, Boolean, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda<TResult>(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(Of TResult)(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda<TResult>(Type, ParsingConfig, Boolean, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Of TResult)(Type, ParsingConfig, Boolean, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``2(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
name: ParseLambda<T, TResult>(ParsingConfig, Boolean, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashing_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``2(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
name.vb: ParseLambda(Of T, TResult)(ParsingConfig, Boolean, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda<T, TResult>(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(Of T, TResult)(System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda<T, TResult>(ParsingConfig, Boolean, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Of T, TResult)(ParsingConfig, Boolean, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``2(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
name: ParseLambda<T, TResult>(Type, ParsingConfig, Boolean, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicExpressionParser.html#your_sha256_hashyour_sha256_hashn_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``2(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])
name.vb: ParseLambda(Of T, TResult)(Type, ParsingConfig, Boolean, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda<T, TResult>(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(Of T, TResult)(System.Type, System.Linq.Dynamic.Core.ParsingConfig, System.Boolean, System.String, System.Object())
nameWithType: DynamicExpressionParser.ParseLambda<T, TResult>(Type, ParsingConfig, Boolean, String, Object[])
nameWithType.vb: DynamicExpressionParser.ParseLambda(Of T, TResult)(Type, ParsingConfig, Boolean, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicProperty
name: DynamicProperty
href: api/System.Linq.Dynamic.Core.DynamicProperty.html
commentId: T:System.Linq.Dynamic.Core.DynamicProperty
fullName: System.Linq.Dynamic.Core.DynamicProperty
nameWithType: DynamicProperty
- uid: System.Linq.Dynamic.Core.DynamicProperty.#ctor(System.String,System.Type)
name: DynamicProperty(String, Type)
href: api/System.Linq.Dynamic.Core.DynamicProperty.html#your_sha256_hashtem_Type_
commentId: M:System.Linq.Dynamic.Core.DynamicProperty.#ctor(System.String,System.Type)
fullName: System.Linq.Dynamic.Core.DynamicProperty.DynamicProperty(System.String, System.Type)
nameWithType: DynamicProperty.DynamicProperty(String, Type)
- uid: System.Linq.Dynamic.Core.DynamicProperty.#ctor*
name: DynamicProperty
href: api/System.Linq.Dynamic.Core.DynamicProperty.html#System_Linq_Dynamic_Core_DynamicProperty__ctor_
commentId: Overload:System.Linq.Dynamic.Core.DynamicProperty.#ctor
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicProperty.DynamicProperty
nameWithType: DynamicProperty.DynamicProperty
- uid: System.Linq.Dynamic.Core.DynamicProperty.Name
name: Name
href: api/System.Linq.Dynamic.Core.DynamicProperty.html#System_Linq_Dynamic_Core_DynamicProperty_Name
commentId: P:System.Linq.Dynamic.Core.DynamicProperty.Name
fullName: System.Linq.Dynamic.Core.DynamicProperty.Name
nameWithType: DynamicProperty.Name
- uid: System.Linq.Dynamic.Core.DynamicProperty.Name*
name: Name
href: api/System.Linq.Dynamic.Core.DynamicProperty.html#System_Linq_Dynamic_Core_DynamicProperty_Name_
commentId: Overload:System.Linq.Dynamic.Core.DynamicProperty.Name
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicProperty.Name
nameWithType: DynamicProperty.Name
- uid: System.Linq.Dynamic.Core.DynamicProperty.Type
name: Type
href: api/System.Linq.Dynamic.Core.DynamicProperty.html#System_Linq_Dynamic_Core_DynamicProperty_Type
commentId: P:System.Linq.Dynamic.Core.DynamicProperty.Type
fullName: System.Linq.Dynamic.Core.DynamicProperty.Type
nameWithType: DynamicProperty.Type
- uid: System.Linq.Dynamic.Core.DynamicProperty.Type*
name: Type
href: api/System.Linq.Dynamic.Core.DynamicProperty.html#System_Linq_Dynamic_Core_DynamicProperty_Type_
commentId: Overload:System.Linq.Dynamic.Core.DynamicProperty.Type
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicProperty.Type
nameWithType: DynamicProperty.Type
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions
name: DynamicQueryableExtensions
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html
commentId: T:System.Linq.Dynamic.Core.DynamicQueryableExtensions
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions
nameWithType: DynamicQueryableExtensions
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Aggregate(System.Linq.IQueryable,System.String,System.String)
name: Aggregate(IQueryable, String, String)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashstem_Linq_IQueryable_System_String_System_String_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Aggregate(System.Linq.IQueryable,System.String,System.String)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Aggregate(System.Linq.IQueryable, System.String, System.String)
nameWithType: DynamicQueryableExtensions.Aggregate(IQueryable, String, String)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Aggregate*
name: Aggregate
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Aggregate_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Aggregate
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Aggregate
nameWithType: DynamicQueryableExtensions.Aggregate
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: All(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashing_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: All(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.All(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.All(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable,System.String,System.Object[])
name: All(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable,System.String,System.Object[])
name.vb: All(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.All(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.All(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.All*
name: All
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_All_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.All
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.All
nameWithType: DynamicQueryableExtensions.All
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable)
name: Any(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Any(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Any(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashing_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Any(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Any(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Any(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: Any(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Any(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable,System.String,System.Object[])
name: Any(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Any(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Any(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Any(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any*
name: Any
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Any_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any
nameWithType: DynamicQueryableExtensions.Any
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.AsDynamicEnumerable(System.Linq.IQueryable)
name: AsDynamicEnumerable(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashmerable_System_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.AsDynamicEnumerable(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.AsDynamicEnumerable(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.AsDynamicEnumerable(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.AsDynamicEnumerable*
name: AsDynamicEnumerable
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashmerable_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.AsDynamicEnumerable
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.AsDynamicEnumerable
nameWithType: DynamicQueryableExtensions.AsDynamicEnumerable
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable)
name: Average(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashem_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Average(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Average(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Average(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Average(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Average(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: Average(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashem_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Average(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable,System.String,System.Object[])
name: Average(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashem_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Average(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Average(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Average(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average*
name: Average
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Average_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average
nameWithType: DynamicQueryableExtensions.Average
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)
name: Cast(IQueryable, ParsingConfig, String)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashring_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String)
nameWithType: DynamicQueryableExtensions.Cast(IQueryable, ParsingConfig, String)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable,System.String)
name: Cast(IQueryable, String)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashLinq_IQueryable_System_String_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable,System.String)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable, System.String)
nameWithType: DynamicQueryableExtensions.Cast(IQueryable, String)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable,System.Type)
name: Cast(IQueryable, Type)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashLinq_IQueryable_System_Type_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable,System.Type)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable, System.Type)
nameWithType: DynamicQueryableExtensions.Cast(IQueryable, Type)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast*
name: Cast
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Cast_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast
nameWithType: DynamicQueryableExtensions.Cast
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable)
name: Count(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Count(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Count(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashtring_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Count(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Count(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Count(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: Count(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Count(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable,System.String,System.Object[])
name: Count(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Count(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Count(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Count(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count*
name: Count
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Count_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count
nameWithType: DynamicQueryableExtensions.Count
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty(System.Linq.IQueryable)
name: DefaultIfEmpty(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashty_System_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.DefaultIfEmpty(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty(System.Linq.IQueryable,System.Object)
name: DefaultIfEmpty(IQueryable, Object)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashty_System_Linq_IQueryable_System_Object_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty(System.Linq.IQueryable,System.Object)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty(System.Linq.IQueryable, System.Object)
nameWithType: DynamicQueryableExtensions.DefaultIfEmpty(IQueryable, Object)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty*
name: DefaultIfEmpty
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashty_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty
nameWithType: DynamicQueryableExtensions.DefaultIfEmpty
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Distinct(System.Linq.IQueryable)
name: Distinct(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashtem_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Distinct(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Distinct(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Distinct(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Distinct*
name: Distinct
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Distinct_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Distinct
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Distinct
nameWithType: DynamicQueryableExtensions.Distinct
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable)
name: First(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.First(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: First(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashtring_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: First(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.First(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.First(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: First(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.First(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable,System.String,System.Object[])
name: First(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable,System.String,System.Object[])
name.vb: First(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.First(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.First(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First*
name: First
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_First_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.First
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.First
nameWithType: DynamicQueryableExtensions.First
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable)
name: FirstOrDefault(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashlt_System_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.FirstOrDefault(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: FirstOrDefault(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: FirstOrDefault(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.FirstOrDefault(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.FirstOrDefault(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: FirstOrDefault(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashon_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.FirstOrDefault(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable,System.String,System.Object[])
name: FirstOrDefault(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashlt_System_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable,System.String,System.Object[])
name.vb: FirstOrDefault(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.FirstOrDefault(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.FirstOrDefault(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault*
name: FirstOrDefault
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashlt_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault
nameWithType: DynamicQueryableExtensions.FirstOrDefault
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IEqualityComparer,System.Object[])
name: GroupBy(IQueryable, ParsingConfig, String, IEqualityComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_String_System_Collections_IEqualityComparer_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IEqualityComparer,System.Object[])
name.vb: GroupBy(IQueryable, ParsingConfig, String, IEqualityComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IEqualityComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IEqualityComparer, System.Object())
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, IEqualityComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, IEqualityComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: GroupBy(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: GroupBy(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String)
name: GroupBy(IQueryable, ParsingConfig, String, String)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_String_System_String_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String)
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, String)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer)
name: GroupBy(IQueryable, ParsingConfig, String, String, IEqualityComparer)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_String_System_String_System_Collections_IEqualityComparer_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String, System.Collections.IEqualityComparer)
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, String, IEqualityComparer)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
name: GroupBy(IQueryable, ParsingConfig, String, String, IEqualityComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashyour_sha256_hashm_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
name.vb: GroupBy(IQueryable, ParsingConfig, String, String, IEqualityComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String, System.Collections.IEqualityComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String, System.Collections.IEqualityComparer, System.Object())
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, String, IEqualityComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, String, IEqualityComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[])
name: GroupBy(IQueryable, ParsingConfig, String, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_String_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[])
name.vb: GroupBy(IQueryable, ParsingConfig, String, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupBy(IQueryable, ParsingConfig, String, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.Collections.IEqualityComparer,System.Object[])
name: GroupBy(IQueryable, String, IEqualityComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashparer_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.Collections.IEqualityComparer,System.Object[])
name.vb: GroupBy(IQueryable, String, IEqualityComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.Collections.IEqualityComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.Collections.IEqualityComparer, System.Object())
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, String, IEqualityComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupBy(IQueryable, String, IEqualityComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.Object[])
name: GroupBy(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashem_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.Object[])
name.vb: GroupBy(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupBy(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String)
name: GroupBy(IQueryable, String, String)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashem_Linq_IQueryable_System_String_System_String_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.String)
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, String, String)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer)
name: GroupBy(IQueryable, String, String, IEqualityComparer)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashs_IEqualityComparer_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.String, System.Collections.IEqualityComparer)
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, String, String, IEqualityComparer)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
name: GroupBy(IQueryable, String, String, IEqualityComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashs_IEqualityComparer_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])
name.vb: GroupBy(IQueryable, String, String, IEqualityComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.String, System.Collections.IEqualityComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.String, System.Collections.IEqualityComparer, System.Object())
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, String, String, IEqualityComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupBy(IQueryable, String, String, IEqualityComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String,System.Object[])
name: GroupBy(IQueryable, String, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashem_Linq_IQueryable_System_String_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String,System.Object[])
name.vb: GroupBy(IQueryable, String, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable, System.String, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.GroupBy(IQueryable, String, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupBy(IQueryable, String, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*
name: GroupBy
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy
nameWithType: DynamicQueryableExtensions.GroupBy
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany*
name: GroupByMany
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany
nameWithType: DynamicQueryableExtensions.GroupByMany
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Object}[])
name: GroupByMany<TElement>(IEnumerable<TElement>, Func<TElement, Object>[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashystem_Object____
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Object}[])
name.vb: GroupByMany(Of TElement)(IEnumerable(Of TElement), Func(Of TElement, Object)())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany<TElement>(System.Collections.Generic.IEnumerable<TElement>, System.Func<TElement, System.Object>[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany(Of TElement)(System.Collections.Generic.IEnumerable(Of TElement), System.Func(Of TElement, System.Object)())
nameWithType: DynamicQueryableExtensions.GroupByMany<TElement>(IEnumerable<TElement>, Func<TElement, Object>[])
nameWithType.vb: DynamicQueryableExtensions.GroupByMany(Of TElement)(IEnumerable(Of TElement), Func(Of TElement, Object)())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany``1(System.Collections.Generic.IEnumerable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String[])
name: GroupByMany<TElement>(IEnumerable<TElement>, ParsingConfig, String[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashic_Core_ParsingConfig_System_String___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany``1(System.Collections.Generic.IEnumerable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String[])
name.vb: GroupByMany(Of TElement)(IEnumerable(Of TElement), ParsingConfig, String())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany<TElement>(System.Collections.Generic.IEnumerable<TElement>, System.Linq.Dynamic.Core.ParsingConfig, System.String[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany(Of TElement)(System.Collections.Generic.IEnumerable(Of TElement), System.Linq.Dynamic.Core.ParsingConfig, System.String())
nameWithType: DynamicQueryableExtensions.GroupByMany<TElement>(IEnumerable<TElement>, ParsingConfig, String[])
nameWithType.vb: DynamicQueryableExtensions.GroupByMany(Of TElement)(IEnumerable(Of TElement), ParsingConfig, String())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany``1(System.Collections.Generic.IEnumerable{``0},System.String[])
name: GroupByMany<TElement>(IEnumerable<TElement>, String[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash_1_System_Collections_Generic_IEnumerable___0__System_String___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany``1(System.Collections.Generic.IEnumerable{``0},System.String[])
name.vb: GroupByMany(Of TElement)(IEnumerable(Of TElement), String())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany<TElement>(System.Collections.Generic.IEnumerable<TElement>, System.String[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany(Of TElement)(System.Collections.Generic.IEnumerable(Of TElement), System.String())
nameWithType: DynamicQueryableExtensions.GroupByMany<TElement>(IEnumerable<TElement>, String[])
nameWithType.vb: DynamicQueryableExtensions.GroupByMany(Of TElement)(IEnumerable(Of TElement), String())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
name: GroupJoin(IQueryable, IEnumerable, String, String, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashg_System_String_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
name.vb: GroupJoin(IQueryable, IEnumerable, String, String, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable, System.Collections.IEnumerable, System.String, System.String, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable, System.Collections.IEnumerable, System.String, System.String, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.GroupJoin(IQueryable, IEnumerable, String, String, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupJoin(IQueryable, IEnumerable, String, String, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
name: GroupJoin(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashyour_sha256_hashring_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
name.vb: GroupJoin(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.Collections.IEnumerable, System.String, System.String, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.Collections.IEnumerable, System.String, System.String, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.GroupJoin(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.GroupJoin(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin*
name: GroupJoin
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupJoin_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin
nameWithType: DynamicQueryableExtensions.GroupJoin
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
name: Join(IQueryable, IEnumerable, String, String, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashtem_String_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
name.vb: Join(IQueryable, IEnumerable, String, String, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable, System.Collections.IEnumerable, System.String, System.String, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable, System.Collections.IEnumerable, System.String, System.String, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Join(IQueryable, IEnumerable, String, String, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Join(IQueryable, IEnumerable, String, String, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
name: Join(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashyour_sha256_hashSystem_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])
name.vb: Join(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.Collections.IEnumerable, System.String, System.String, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.Collections.IEnumerable, System.String, System.String, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Join(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Join(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join*
name: Join
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Join_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join
nameWithType: DynamicQueryableExtensions.Join
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.String,System.String,System.String,System.Object[])
name: Join<TElement>(IQueryable<TElement>, IEnumerable<TElement>, String, String, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_0__System_String_System_String_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.String,System.String,System.String,System.Object[])
name.vb: Join(Of TElement)(IQueryable(Of TElement), IEnumerable(Of TElement), String, String, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join<TElement>(System.Linq.IQueryable<TElement>, System.Collections.Generic.IEnumerable<TElement>, System.String, System.String, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(Of TElement)(System.Linq.IQueryable(Of TElement), System.Collections.Generic.IEnumerable(Of TElement), System.String, System.String, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Join<TElement>(IQueryable<TElement>, IEnumerable<TElement>, String, String, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Join(Of TElement)(IQueryable(Of TElement), IEnumerable(Of TElement), String, String, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.Collections.Generic.IEnumerable{``0},System.String,System.String,System.String,System.Object[])
name: Join<TElement>(IQueryable<TElement>, ParsingConfig, IEnumerable<TElement>, String, String, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashyour_sha256_hashString_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.Collections.Generic.IEnumerable{``0},System.String,System.String,System.String,System.Object[])
name.vb: Join(Of TElement)(IQueryable(Of TElement), ParsingConfig, IEnumerable(Of TElement), String, String, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join<TElement>(System.Linq.IQueryable<TElement>, System.Linq.Dynamic.Core.ParsingConfig, System.Collections.Generic.IEnumerable<TElement>, System.String, System.String, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(Of TElement)(System.Linq.IQueryable(Of TElement), System.Linq.Dynamic.Core.ParsingConfig, System.Collections.Generic.IEnumerable(Of TElement), System.String, System.String, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Join<TElement>(IQueryable<TElement>, ParsingConfig, IEnumerable<TElement>, String, String, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Join(Of TElement)(IQueryable(Of TElement), ParsingConfig, IEnumerable(Of TElement), String, String, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable)
name: Last(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashLinq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Last(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Last(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashring_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Last(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Last(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Last(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: Last(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashLinq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Last(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable,System.String,System.Object[])
name: Last(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashLinq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Last(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Last(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Last(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last*
name: Last
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Last_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last
nameWithType: DynamicQueryableExtensions.Last
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable)
name: LastOrDefault(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hasht_System_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.LastOrDefault(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: LastOrDefault(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashSystem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: LastOrDefault(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.LastOrDefault(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.LastOrDefault(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: LastOrDefault(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashn_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.LastOrDefault(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable,System.String,System.Object[])
name: LastOrDefault(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hasht_System_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable,System.String,System.Object[])
name.vb: LastOrDefault(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.LastOrDefault(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.LastOrDefault(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault*
name: LastOrDefault
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hasht_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault
nameWithType: DynamicQueryableExtensions.LastOrDefault
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable)
name: LongCount(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashstem_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.LongCount(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: LongCount(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: LongCount(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.LongCount(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.LongCount(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: LongCount(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashstem_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.LongCount(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable,System.String,System.Object[])
name: LongCount(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashstem_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable,System.String,System.Object[])
name.vb: LongCount(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.LongCount(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.LongCount(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount*
name: LongCount
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_LongCount_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount
nameWithType: DynamicQueryableExtensions.LongCount
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable)
name: Max(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Max(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Max(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashing_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Max(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Max(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Max(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: Max(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Max(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable,System.String,System.Object[])
name: Max(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Max(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Max(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Max(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max*
name: Max
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Max_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max
nameWithType: DynamicQueryableExtensions.Max
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable)
name: Min(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Min(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Min(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashing_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Min(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Min(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Min(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: Min(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Min(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable,System.String,System.Object[])
name: Min(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Min(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Min(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Min(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min*
name: Min
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Min_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min
nameWithType: DynamicQueryableExtensions.Min
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)
name: OfType(IQueryable, ParsingConfig, String)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashString_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String)
nameWithType: DynamicQueryableExtensions.OfType(IQueryable, ParsingConfig, String)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable,System.String)
name: OfType(IQueryable, String)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashm_Linq_IQueryable_System_String_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable,System.String)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable, System.String)
nameWithType: DynamicQueryableExtensions.OfType(IQueryable, String)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable,System.Type)
name: OfType(IQueryable, Type)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashm_Linq_IQueryable_System_Type_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable,System.Type)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable, System.Type)
nameWithType: DynamicQueryableExtensions.OfType(IQueryable, Type)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType*
name: OfType
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_OfType_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType
nameWithType: DynamicQueryableExtensions.OfType
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
name: OrderBy(IQueryable, ParsingConfig, String, IComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_String_System_Collections_IComparer_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
name.vb: OrderBy(IQueryable, ParsingConfig, String, IComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IComparer, System.Object())
nameWithType: DynamicQueryableExtensions.OrderBy(IQueryable, ParsingConfig, String, IComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.OrderBy(IQueryable, ParsingConfig, String, IComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: OrderBy(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: OrderBy(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.OrderBy(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.OrderBy(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.String,System.Collections.IComparer,System.Object[])
name: OrderBy(IQueryable, String, IComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashstem_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.String,System.Collections.IComparer,System.Object[])
name.vb: OrderBy(IQueryable, String, IComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable, System.String, System.Collections.IComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable, System.String, System.Collections.IComparer, System.Object())
nameWithType: DynamicQueryableExtensions.OrderBy(IQueryable, String, IComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.OrderBy(IQueryable, String, IComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.String,System.Object[])
name: OrderBy(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashem_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.String,System.Object[])
name.vb: OrderBy(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.OrderBy(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.OrderBy(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy*
name: OrderBy
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_OrderBy_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy
nameWithType: DynamicQueryableExtensions.OrderBy
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
name: OrderBy<TSource>(IQueryable<TSource>, ParsingConfig, String, IComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashg_System_String_System_Collections_IComparer_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
name.vb: OrderBy(Of TSource)(IQueryable(Of TSource), ParsingConfig, String, IComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy<TSource>(System.Linq.IQueryable<TSource>, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(Of TSource)(System.Linq.IQueryable(Of TSource), System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IComparer, System.Object())
nameWithType: DynamicQueryableExtensions.OrderBy<TSource>(IQueryable<TSource>, ParsingConfig, String, IComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.OrderBy(Of TSource)(IQueryable(Of TSource), ParsingConfig, String, IComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: OrderBy<TSource>(IQueryable<TSource>, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashg_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: OrderBy(Of TSource)(IQueryable(Of TSource), ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy<TSource>(System.Linq.IQueryable<TSource>, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(Of TSource)(System.Linq.IQueryable(Of TSource), System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.OrderBy<TSource>(IQueryable<TSource>, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.OrderBy(Of TSource)(IQueryable(Of TSource), ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.String,System.Collections.IComparer,System.Object[])
name: OrderBy<TSource>(IQueryable<TSource>, String, IComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashparer_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.String,System.Collections.IComparer,System.Object[])
name.vb: OrderBy(Of TSource)(IQueryable(Of TSource), String, IComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy<TSource>(System.Linq.IQueryable<TSource>, System.String, System.Collections.IComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(Of TSource)(System.Linq.IQueryable(Of TSource), System.String, System.Collections.IComparer, System.Object())
nameWithType: DynamicQueryableExtensions.OrderBy<TSource>(IQueryable<TSource>, String, IComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.OrderBy(Of TSource)(IQueryable(Of TSource), String, IComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.String,System.Object[])
name: OrderBy<TSource>(IQueryable<TSource>, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashystem_Linq_IQueryable___0__System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.String,System.Object[])
name.vb: OrderBy(Of TSource)(IQueryable(Of TSource), String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy<TSource>(System.Linq.IQueryable<TSource>, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(Of TSource)(System.Linq.IQueryable(Of TSource), System.String, System.Object())
nameWithType: DynamicQueryableExtensions.OrderBy<TSource>(IQueryable<TSource>, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.OrderBy(Of TSource)(IQueryable(Of TSource), String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page(System.Linq.IQueryable,System.Int32,System.Int32)
name: Page(IQueryable, Int32, Int32)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashLinq_IQueryable_System_Int32_System_Int32_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page(System.Linq.IQueryable,System.Int32,System.Int32)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page(System.Linq.IQueryable, System.Int32, System.Int32)
nameWithType: DynamicQueryableExtensions.Page(IQueryable, Int32, Int32)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page*
name: Page
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Page_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page
nameWithType: DynamicQueryableExtensions.Page
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page``1(System.Linq.IQueryable{``0},System.Int32,System.Int32)
name: Page<TSource>(IQueryable<TSource>, Int32, Int32)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashem_Linq_IQueryable___0__System_Int32_System_Int32_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page``1(System.Linq.IQueryable{``0},System.Int32,System.Int32)
name.vb: Page(Of TSource)(IQueryable(Of TSource), Int32, Int32)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page<TSource>(System.Linq.IQueryable<TSource>, System.Int32, System.Int32)
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page(Of TSource)(System.Linq.IQueryable(Of TSource), System.Int32, System.Int32)
nameWithType: DynamicQueryableExtensions.Page<TSource>(IQueryable<TSource>, Int32, Int32)
nameWithType.vb: DynamicQueryableExtensions.Page(Of TSource)(IQueryable(Of TSource), Int32, Int32)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult(System.Linq.IQueryable,System.Int32,System.Int32,System.Nullable{System.Int32})
name: PageResult(IQueryable, Int32, Int32, Nullable<Int32>)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashSystem_Int32__
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult(System.Linq.IQueryable,System.Int32,System.Int32,System.Nullable{System.Int32})
name.vb: PageResult(IQueryable, Int32, Int32, Nullable(Of Int32))
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult(System.Linq.IQueryable, System.Int32, System.Int32, System.Nullable<System.Int32>)
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult(System.Linq.IQueryable, System.Int32, System.Int32, System.Nullable(Of System.Int32))
nameWithType: DynamicQueryableExtensions.PageResult(IQueryable, Int32, Int32, Nullable<Int32>)
nameWithType.vb: DynamicQueryableExtensions.PageResult(IQueryable, Int32, Int32, Nullable(Of Int32))
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult*
name: PageResult
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_PageResult_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult
nameWithType: DynamicQueryableExtensions.PageResult
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult``1(System.Linq.IQueryable{``0},System.Int32,System.Int32,System.Nullable{System.Int32})
name: PageResult<TSource>(IQueryable<TSource>, Int32, Int32, Nullable<Int32>)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashullable_System_Int32__
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult``1(System.Linq.IQueryable{``0},System.Int32,System.Int32,System.Nullable{System.Int32})
name.vb: PageResult(Of TSource)(IQueryable(Of TSource), Int32, Int32, Nullable(Of Int32))
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult<TSource>(System.Linq.IQueryable<TSource>, System.Int32, System.Int32, System.Nullable<System.Int32>)
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult(Of TSource)(System.Linq.IQueryable(Of TSource), System.Int32, System.Int32, System.Nullable(Of System.Int32))
nameWithType: DynamicQueryableExtensions.PageResult<TSource>(IQueryable<TSource>, Int32, Int32, Nullable<Int32>)
nameWithType.vb: DynamicQueryableExtensions.PageResult(Of TSource)(IQueryable(Of TSource), Int32, Int32, Nullable(Of Int32))
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Reverse(System.Linq.IQueryable)
name: Reverse(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashem_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Reverse(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Reverse(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Reverse(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Reverse*
name: Reverse
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Reverse_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Reverse
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Reverse
nameWithType: DynamicQueryableExtensions.Reverse
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Select(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashString_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Select(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Select(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Select(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
name: Select(IQueryable, ParsingConfig, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashType_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
name.vb: Select(IQueryable, ParsingConfig, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Select(IQueryable, ParsingConfig, Type, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Select(IQueryable, ParsingConfig, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.String,System.Object[])
name: Select(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashm_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Select(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Select(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Select(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.Type,System.String,System.Object[])
name: Select(IQueryable, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashm_Linq_IQueryable_System_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.Type,System.String,System.Object[])
name.vb: Select(IQueryable, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable, System.Type, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Select(IQueryable, Type, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Select(IQueryable, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select*
name: Select
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Select_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select
nameWithType: DynamicQueryableExtensions.Select
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select``1(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Select<TResult>(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select``1(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Select(Of TResult)(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select<TResult>(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(Of TResult)(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Select<TResult>(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Select(Of TResult)(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select``1(System.Linq.IQueryable,System.String,System.Object[])
name: Select<TResult>(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashstem_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select``1(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Select(Of TResult)(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select<TResult>(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(Of TResult)(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Select<TResult>(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Select(Of TResult)(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: SelectMany(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashtem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: SelectMany(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[],System.Object[])
name: SelectMany(IQueryable, ParsingConfig, String, String, Object[], Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashtem_String_System_String_System_Object___System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[],System.Object[])
name.vb: SelectMany(IQueryable, ParsingConfig, String, String, Object(), Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String, System.Object[], System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String, System.Object(), System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany(IQueryable, ParsingConfig, String, String, Object[], Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(IQueryable, ParsingConfig, String, String, Object(), Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.String,System.String,System.Object[],System.Object[])
name: SelectMany(IQueryable, ParsingConfig, String, String, String, String, Object[], Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashyour_sha256_hashct___System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.String,System.String,System.Object[],System.Object[])
name.vb: SelectMany(IQueryable, ParsingConfig, String, String, String, String, Object(), Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String, System.String, System.String, System.Object[], System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.String, System.String, System.String, System.Object(), System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany(IQueryable, ParsingConfig, String, String, String, String, Object[], Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(IQueryable, ParsingConfig, String, String, String, String, Object(), Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
name: SelectMany(IQueryable, ParsingConfig, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashtem_Type_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])
name.vb: SelectMany(IQueryable, ParsingConfig, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.Type, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany(IQueryable, ParsingConfig, Type, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(IQueryable, ParsingConfig, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.String,System.Object[])
name: SelectMany(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashystem_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.String,System.Object[])
name.vb: SelectMany(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.String,System.String,System.Object[],System.Object[])
name: SelectMany(IQueryable, String, String, Object[], Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash__System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.String,System.String,System.Object[],System.Object[])
name.vb: SelectMany(IQueryable, String, String, Object(), Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.String, System.String, System.Object[], System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.String, System.String, System.Object(), System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany(IQueryable, String, String, Object[], Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(IQueryable, String, String, Object(), Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.String,System.String,System.String,System.String,System.Object[],System.Object[])
name: SelectMany(IQueryable, String, String, String, String, Object[], Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashSystem_String_System_Object___System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.String,System.String,System.String,System.String,System.Object[],System.Object[])
name.vb: SelectMany(IQueryable, String, String, String, String, Object(), Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.String, System.String, System.String, System.String, System.Object[], System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.String, System.String, System.String, System.String, System.Object(), System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany(IQueryable, String, String, String, String, Object[], Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(IQueryable, String, String, String, String, Object(), Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Type,System.String,System.Object[])
name: SelectMany(IQueryable, Type, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hash
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Type,System.String,System.Object[])
name.vb: SelectMany(IQueryable, Type, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Type, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable, System.Type, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany(IQueryable, Type, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(IQueryable, Type, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*
name: SelectMany
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany
nameWithType: DynamicQueryableExtensions.SelectMany
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany``1(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: SelectMany<TResult>(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashSystem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany``1(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: SelectMany(Of TResult)(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany<TResult>(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(Of TResult)(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany<TResult>(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(Of TResult)(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany``1(System.Linq.IQueryable,System.String,System.Object[])
name: SelectMany<TResult>(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash1_System_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany``1(System.Linq.IQueryable,System.String,System.Object[])
name.vb: SelectMany(Of TResult)(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany<TResult>(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(Of TResult)(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SelectMany<TResult>(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SelectMany(Of TResult)(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable)
name: Single(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashm_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Single(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Single(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashString_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Single(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Single(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Single(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: Single(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashm_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Single(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable,System.String,System.Object[])
name: Single(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashm_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Single(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Single(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Single(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single*
name: Single
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Single_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single
nameWithType: DynamicQueryableExtensions.Single
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable)
name: SingleOrDefault(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashult_System_Linq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.SingleOrDefault(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: SingleOrDefault(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashg_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: SingleOrDefault(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SingleOrDefault(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SingleOrDefault(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: SingleOrDefault(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashion_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.SingleOrDefault(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable,System.String,System.Object[])
name: SingleOrDefault(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashult_System_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable,System.String,System.Object[])
name.vb: SingleOrDefault(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SingleOrDefault(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SingleOrDefault(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault*
name: SingleOrDefault
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashult_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault
nameWithType: DynamicQueryableExtensions.SingleOrDefault
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Skip(System.Linq.IQueryable,System.Int32)
name: Skip(IQueryable, Int32)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashLinq_IQueryable_System_Int32_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Skip(System.Linq.IQueryable,System.Int32)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Skip(System.Linq.IQueryable, System.Int32)
nameWithType: DynamicQueryableExtensions.Skip(IQueryable, Int32)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Skip*
name: Skip
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Skip_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Skip
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Skip
nameWithType: DynamicQueryableExtensions.Skip
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: SkipWhile(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: SkipWhile(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SkipWhile(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SkipWhile(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable,System.String,System.Object[])
name: SkipWhile(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashstem_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable,System.String,System.Object[])
name.vb: SkipWhile(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.SkipWhile(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.SkipWhile(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile*
name: SkipWhile
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_SkipWhile_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile
nameWithType: DynamicQueryableExtensions.SkipWhile
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable)
name: Sum(IQueryable)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable)
nameWithType: DynamicQueryableExtensions.Sum(IQueryable)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Sum(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashing_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Sum(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Sum(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Sum(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: Sum(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Sum(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable,System.String,System.Object[])
name: Sum(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashinq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Sum(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Sum(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Sum(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum*
name: Sum
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Sum_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum
nameWithType: DynamicQueryableExtensions.Sum
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Take(System.Linq.IQueryable,System.Int32)
name: Take(IQueryable, Int32)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashLinq_IQueryable_System_Int32_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Take(System.Linq.IQueryable,System.Int32)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Take(System.Linq.IQueryable, System.Int32)
nameWithType: DynamicQueryableExtensions.Take(IQueryable, Int32)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Take*
name: Take
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Take_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Take
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Take
nameWithType: DynamicQueryableExtensions.Take
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: TakeWhile(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: TakeWhile(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.TakeWhile(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.TakeWhile(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable,System.String,System.Object[])
name: TakeWhile(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashstem_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable,System.String,System.Object[])
name.vb: TakeWhile(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.TakeWhile(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.TakeWhile(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile*
name: TakeWhile
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_TakeWhile_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile
nameWithType: DynamicQueryableExtensions.TakeWhile
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
name: ThenBy(IOrderedQueryable, ParsingConfig, String, IComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashSystem_String_System_Collections_IComparer_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
name.vb: ThenBy(IOrderedQueryable, ParsingConfig, String, IComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IComparer, System.Object())
nameWithType: DynamicQueryableExtensions.ThenBy(IOrderedQueryable, ParsingConfig, String, IComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.ThenBy(IOrderedQueryable, ParsingConfig, String, IComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: ThenBy(IOrderedQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashSystem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: ThenBy(IOrderedQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.ThenBy(IOrderedQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.ThenBy(IOrderedQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.String,System.Collections.IComparer,System.Object[])
name: ThenBy(IOrderedQueryable, String, IComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashrer_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.String,System.Collections.IComparer,System.Object[])
name.vb: ThenBy(IOrderedQueryable, String, IComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable, System.String, System.Collections.IComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable, System.String, System.Collections.IComparer, System.Object())
nameWithType: DynamicQueryableExtensions.ThenBy(IOrderedQueryable, String, IComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.ThenBy(IOrderedQueryable, String, IComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.String,System.Object[])
name: ThenBy(IOrderedQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashm_Linq_IOrderedQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.String,System.Object[])
name.vb: ThenBy(IOrderedQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.ThenBy(IOrderedQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.ThenBy(IOrderedQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy*
name: ThenBy
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_ThenBy_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy
nameWithType: DynamicQueryableExtensions.ThenBy
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
name: ThenBy<TSource>(IOrderedQueryable<TSource>, ParsingConfig, String, IComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashyour_sha256_hash___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])
name.vb: ThenBy(Of TSource)(IOrderedQueryable(Of TSource), ParsingConfig, String, IComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy<TSource>(System.Linq.IOrderedQueryable<TSource>, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(Of TSource)(System.Linq.IOrderedQueryable(Of TSource), System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Collections.IComparer, System.Object())
nameWithType: DynamicQueryableExtensions.ThenBy<TSource>(IOrderedQueryable<TSource>, ParsingConfig, String, IComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.ThenBy(Of TSource)(IOrderedQueryable(Of TSource), ParsingConfig, String, IComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: ThenBy<TSource>(IOrderedQueryable<TSource>, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashgConfig_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: ThenBy(Of TSource)(IOrderedQueryable(Of TSource), ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy<TSource>(System.Linq.IOrderedQueryable<TSource>, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(Of TSource)(System.Linq.IOrderedQueryable(Of TSource), System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.ThenBy<TSource>(IOrderedQueryable<TSource>, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.ThenBy(Of TSource)(IOrderedQueryable(Of TSource), ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.String,System.Collections.IComparer,System.Object[])
name: ThenBy<TSource>(IOrderedQueryable<TSource>, String, IComparer, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashs_IComparer_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.String,System.Collections.IComparer,System.Object[])
name.vb: ThenBy(Of TSource)(IOrderedQueryable(Of TSource), String, IComparer, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy<TSource>(System.Linq.IOrderedQueryable<TSource>, System.String, System.Collections.IComparer, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(Of TSource)(System.Linq.IOrderedQueryable(Of TSource), System.String, System.Collections.IComparer, System.Object())
nameWithType: DynamicQueryableExtensions.ThenBy<TSource>(IOrderedQueryable<TSource>, String, IComparer, Object[])
nameWithType.vb: DynamicQueryableExtensions.ThenBy(Of TSource)(IOrderedQueryable(Of TSource), String, IComparer, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.String,System.Object[])
name: ThenBy<TSource>(IOrderedQueryable<TSource>, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashstem_Linq_IOrderedQueryable___0__System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.String,System.Object[])
name.vb: ThenBy(Of TSource)(IOrderedQueryable(Of TSource), String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy<TSource>(System.Linq.IOrderedQueryable<TSource>, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(Of TSource)(System.Linq.IOrderedQueryable(Of TSource), System.String, System.Object())
nameWithType: DynamicQueryableExtensions.ThenBy<TSource>(IOrderedQueryable<TSource>, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.ThenBy(Of TSource)(IOrderedQueryable(Of TSource), String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Where(IQueryable, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashtring_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Where(IQueryable, ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Where(IQueryable, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Where(IQueryable, ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
name: Where(IQueryable, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable, System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Where(IQueryable, LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable,System.String,System.Object[])
name: Where(IQueryable, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hash_Linq_IQueryable_System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable,System.String,System.Object[])
name.vb: Where(IQueryable, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Where(IQueryable, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Where(IQueryable, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where*
name: Where
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#System_Linq_Dynamic_Core_DynamicQueryableExtensions_Where_
commentId: Overload:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where
isSpec: "True"
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where
nameWithType: DynamicQueryableExtensions.Where
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name: Where<TSource>(IQueryable<TSource>, ParsingConfig, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashSystem_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])
name.vb: Where(Of TSource)(IQueryable(Of TSource), ParsingConfig, String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where<TSource>(System.Linq.IQueryable<TSource>, System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(Of TSource)(System.Linq.IQueryable(Of TSource), System.Linq.Dynamic.Core.ParsingConfig, System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Where<TSource>(IQueryable<TSource>, ParsingConfig, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Where(Of TSource)(IQueryable(Of TSource), ParsingConfig, String, Object())
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.LambdaExpression)
name: Where<TSource>(IQueryable<TSource>, LambdaExpression)
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashyour_sha256_hashn_
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.LambdaExpression)
name.vb: Where(Of TSource)(IQueryable(Of TSource), LambdaExpression)
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where<TSource>(System.Linq.IQueryable<TSource>, System.Linq.Expressions.LambdaExpression)
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(Of TSource)(System.Linq.IQueryable(Of TSource), System.Linq.Expressions.LambdaExpression)
nameWithType: DynamicQueryableExtensions.Where<TSource>(IQueryable<TSource>, LambdaExpression)
nameWithType.vb: DynamicQueryableExtensions.Where(Of TSource)(IQueryable(Of TSource), LambdaExpression)
- uid: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where``1(System.Linq.IQueryable{``0},System.String,System.Object[])
name: Where<TSource>(IQueryable<TSource>, String, Object[])
href: api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html#your_sha256_hashtem_Linq_IQueryable___0__System_String_System_Object___
commentId: M:System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where``1(System.Linq.IQueryable{``0},System.String,System.Object[])
name.vb: Where(Of TSource)(IQueryable(Of TSource), String, Object())
fullName: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where<TSource>(System.Linq.IQueryable<TSource>, System.String, System.Object[])
fullName.vb: System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(Of TSource)(System.Linq.IQueryable(Of TSource), System.String, System.Object())
nameWithType: DynamicQueryableExtensions.Where<TSource>(IQueryable<TSource>, String, Object[])
nameWithType.vb: DynamicQueryableExtensions.Where(Of TSource)(IQueryable(Of TSource), String, Object())
- uid: System.Linq.Dynamic.Core.Exceptions
name: System.Linq.Dynamic.Core.Exceptions
href: api/System.Linq.Dynamic.Core.Exceptions.html
commentId: N:System.Linq.Dynamic.Core.Exceptions
fullName: System.Linq.Dynamic.Core.Exceptions
nameWithType: System.Linq.Dynamic.Core.Exceptions
- uid: System.Linq.Dynamic.Core.Exceptions.ParseException
name: ParseException
href: api/System.Linq.Dynamic.Core.Exceptions.ParseException.html
commentId: T:System.Linq.Dynamic.Core.Exceptions.ParseException
fullName: System.Linq.Dynamic.Core.Exceptions.ParseException
nameWithType: ParseException
- uid: System.Linq.Dynamic.Core.Exceptions.ParseException.#ctor(System.String,System.Int32,System.Exception)
name: ParseException(String, Int32, Exception)
href: api/System.Linq.Dynamic.Core.Exceptions.ParseException.html#your_sha256_hashString_System_Int32_System_Exception_
commentId: M:System.Linq.Dynamic.Core.Exceptions.ParseException.#ctor(System.String,System.Int32,System.Exception)
fullName: System.Linq.Dynamic.Core.Exceptions.ParseException.ParseException(System.String, System.Int32, System.Exception)
nameWithType: ParseException.ParseException(String, Int32, Exception)
- uid: System.Linq.Dynamic.Core.Exceptions.ParseException.#ctor*
name: ParseException
href: api/System.Linq.Dynamic.Core.Exceptions.ParseException.html#System_Linq_Dynamic_Core_Exceptions_ParseException__ctor_
commentId: Overload:System.Linq.Dynamic.Core.Exceptions.ParseException.#ctor
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Exceptions.ParseException.ParseException
nameWithType: ParseException.ParseException
- uid: System.Linq.Dynamic.Core.Exceptions.ParseException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
name: GetObjectData(SerializationInfo, StreamingContext)
href: api/System.Linq.Dynamic.Core.Exceptions.ParseException.html#your_sha256_hashyour_sha256_hasherialization_StreamingContext_
commentId: M:System.Linq.Dynamic.Core.Exceptions.ParseException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
fullName: System.Linq.Dynamic.Core.Exceptions.ParseException.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
nameWithType: ParseException.GetObjectData(SerializationInfo, StreamingContext)
- uid: System.Linq.Dynamic.Core.Exceptions.ParseException.GetObjectData*
name: GetObjectData
href: api/System.Linq.Dynamic.Core.Exceptions.ParseException.html#your_sha256_hash_
commentId: Overload:System.Linq.Dynamic.Core.Exceptions.ParseException.GetObjectData
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Exceptions.ParseException.GetObjectData
nameWithType: ParseException.GetObjectData
- uid: System.Linq.Dynamic.Core.Exceptions.ParseException.Position
name: Position
href: api/System.Linq.Dynamic.Core.Exceptions.ParseException.html#System_Linq_Dynamic_Core_Exceptions_ParseException_Position
commentId: P:System.Linq.Dynamic.Core.Exceptions.ParseException.Position
fullName: System.Linq.Dynamic.Core.Exceptions.ParseException.Position
nameWithType: ParseException.Position
- uid: System.Linq.Dynamic.Core.Exceptions.ParseException.Position*
name: Position
href: api/System.Linq.Dynamic.Core.Exceptions.ParseException.html#System_Linq_Dynamic_Core_Exceptions_ParseException_Position_
commentId: Overload:System.Linq.Dynamic.Core.Exceptions.ParseException.Position
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Exceptions.ParseException.Position
nameWithType: ParseException.Position
- uid: System.Linq.Dynamic.Core.Exceptions.ParseException.ToString
name: ToString()
href: api/System.Linq.Dynamic.Core.Exceptions.ParseException.html#System_Linq_Dynamic_Core_Exceptions_ParseException_ToString
commentId: M:System.Linq.Dynamic.Core.Exceptions.ParseException.ToString
fullName: System.Linq.Dynamic.Core.Exceptions.ParseException.ToString()
nameWithType: ParseException.ToString()
- uid: System.Linq.Dynamic.Core.Exceptions.ParseException.ToString*
name: ToString
href: api/System.Linq.Dynamic.Core.Exceptions.ParseException.html#System_Linq_Dynamic_Core_Exceptions_ParseException_ToString_
commentId: Overload:System.Linq.Dynamic.Core.Exceptions.ParseException.ToString
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Exceptions.ParseException.ToString
nameWithType: ParseException.ToString
- uid: System.Linq.Dynamic.Core.ExtensibilityPoint
name: ExtensibilityPoint
href: api/System.Linq.Dynamic.Core.ExtensibilityPoint.html
commentId: T:System.Linq.Dynamic.Core.ExtensibilityPoint
fullName: System.Linq.Dynamic.Core.ExtensibilityPoint
nameWithType: ExtensibilityPoint
- uid: System.Linq.Dynamic.Core.ExtensibilityPoint.QueryOptimizer
name: QueryOptimizer
href: api/System.Linq.Dynamic.Core.ExtensibilityPoint.html#System_Linq_Dynamic_Core_ExtensibilityPoint_QueryOptimizer
commentId: F:System.Linq.Dynamic.Core.ExtensibilityPoint.QueryOptimizer
fullName: System.Linq.Dynamic.Core.ExtensibilityPoint.QueryOptimizer
nameWithType: ExtensibilityPoint.QueryOptimizer
- uid: System.Linq.Dynamic.Core.GroupResult
name: GroupResult
href: api/System.Linq.Dynamic.Core.GroupResult.html
commentId: T:System.Linq.Dynamic.Core.GroupResult
fullName: System.Linq.Dynamic.Core.GroupResult
nameWithType: GroupResult
- uid: System.Linq.Dynamic.Core.GroupResult.Count
name: Count
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_Count
commentId: P:System.Linq.Dynamic.Core.GroupResult.Count
fullName: System.Linq.Dynamic.Core.GroupResult.Count
nameWithType: GroupResult.Count
- uid: System.Linq.Dynamic.Core.GroupResult.Count*
name: Count
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_Count_
commentId: Overload:System.Linq.Dynamic.Core.GroupResult.Count
isSpec: "True"
fullName: System.Linq.Dynamic.Core.GroupResult.Count
nameWithType: GroupResult.Count
- uid: System.Linq.Dynamic.Core.GroupResult.Items
name: Items
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_Items
commentId: P:System.Linq.Dynamic.Core.GroupResult.Items
fullName: System.Linq.Dynamic.Core.GroupResult.Items
nameWithType: GroupResult.Items
- uid: System.Linq.Dynamic.Core.GroupResult.Items*
name: Items
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_Items_
commentId: Overload:System.Linq.Dynamic.Core.GroupResult.Items
isSpec: "True"
fullName: System.Linq.Dynamic.Core.GroupResult.Items
nameWithType: GroupResult.Items
- uid: System.Linq.Dynamic.Core.GroupResult.Key
name: Key
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_Key
commentId: P:System.Linq.Dynamic.Core.GroupResult.Key
fullName: System.Linq.Dynamic.Core.GroupResult.Key
nameWithType: GroupResult.Key
- uid: System.Linq.Dynamic.Core.GroupResult.Key*
name: Key
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_Key_
commentId: Overload:System.Linq.Dynamic.Core.GroupResult.Key
isSpec: "True"
fullName: System.Linq.Dynamic.Core.GroupResult.Key
nameWithType: GroupResult.Key
- uid: System.Linq.Dynamic.Core.GroupResult.Subgroups
name: Subgroups
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_Subgroups
commentId: P:System.Linq.Dynamic.Core.GroupResult.Subgroups
fullName: System.Linq.Dynamic.Core.GroupResult.Subgroups
nameWithType: GroupResult.Subgroups
- uid: System.Linq.Dynamic.Core.GroupResult.Subgroups*
name: Subgroups
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_Subgroups_
commentId: Overload:System.Linq.Dynamic.Core.GroupResult.Subgroups
isSpec: "True"
fullName: System.Linq.Dynamic.Core.GroupResult.Subgroups
nameWithType: GroupResult.Subgroups
- uid: System.Linq.Dynamic.Core.GroupResult.ToString
name: ToString()
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_ToString
commentId: M:System.Linq.Dynamic.Core.GroupResult.ToString
fullName: System.Linq.Dynamic.Core.GroupResult.ToString()
nameWithType: GroupResult.ToString()
- uid: System.Linq.Dynamic.Core.GroupResult.ToString*
name: ToString
href: api/System.Linq.Dynamic.Core.GroupResult.html#System_Linq_Dynamic_Core_GroupResult_ToString_
commentId: Overload:System.Linq.Dynamic.Core.GroupResult.ToString
isSpec: "True"
fullName: System.Linq.Dynamic.Core.GroupResult.ToString
nameWithType: GroupResult.ToString
- uid: System.Linq.Dynamic.Core.IAssemblyHelper
name: IAssemblyHelper
href: api/System.Linq.Dynamic.Core.IAssemblyHelper.html
commentId: T:System.Linq.Dynamic.Core.IAssemblyHelper
fullName: System.Linq.Dynamic.Core.IAssemblyHelper
nameWithType: IAssemblyHelper
- uid: System.Linq.Dynamic.Core.IAssemblyHelper.GetAssemblies
name: GetAssemblies()
href: api/System.Linq.Dynamic.Core.IAssemblyHelper.html#System_Linq_Dynamic_Core_IAssemblyHelper_GetAssemblies
commentId: M:System.Linq.Dynamic.Core.IAssemblyHelper.GetAssemblies
fullName: System.Linq.Dynamic.Core.IAssemblyHelper.GetAssemblies()
nameWithType: IAssemblyHelper.GetAssemblies()
- uid: System.Linq.Dynamic.Core.IAssemblyHelper.GetAssemblies*
name: GetAssemblies
href: api/System.Linq.Dynamic.Core.IAssemblyHelper.html#System_Linq_Dynamic_Core_IAssemblyHelper_GetAssemblies_
commentId: Overload:System.Linq.Dynamic.Core.IAssemblyHelper.GetAssemblies
isSpec: "True"
fullName: System.Linq.Dynamic.Core.IAssemblyHelper.GetAssemblies
nameWithType: IAssemblyHelper.GetAssemblies
- uid: System.Linq.Dynamic.Core.IQueryableAnalyzer
name: IQueryableAnalyzer
href: api/System.Linq.Dynamic.Core.IQueryableAnalyzer.html
commentId: T:System.Linq.Dynamic.Core.IQueryableAnalyzer
fullName: System.Linq.Dynamic.Core.IQueryableAnalyzer
nameWithType: IQueryableAnalyzer
- uid: System.Linq.Dynamic.Core.IQueryableAnalyzer.SupportsLinqToObjects(System.Linq.IQueryable,System.Linq.IQueryProvider)
name: SupportsLinqToObjects(IQueryable, IQueryProvider)
href: api/System.Linq.Dynamic.Core.IQueryableAnalyzer.html#your_sha256_hashs_System_Linq_IQueryable_System_Linq_IQueryProvider_
commentId: M:System.Linq.Dynamic.Core.IQueryableAnalyzer.SupportsLinqToObjects(System.Linq.IQueryable,System.Linq.IQueryProvider)
fullName: System.Linq.Dynamic.Core.IQueryableAnalyzer.SupportsLinqToObjects(System.Linq.IQueryable, System.Linq.IQueryProvider)
nameWithType: IQueryableAnalyzer.SupportsLinqToObjects(IQueryable, IQueryProvider)
- uid: System.Linq.Dynamic.Core.IQueryableAnalyzer.SupportsLinqToObjects*
name: SupportsLinqToObjects
href: api/System.Linq.Dynamic.Core.IQueryableAnalyzer.html#your_sha256_hashs_
commentId: Overload:System.Linq.Dynamic.Core.IQueryableAnalyzer.SupportsLinqToObjects
isSpec: "True"
fullName: System.Linq.Dynamic.Core.IQueryableAnalyzer.SupportsLinqToObjects
nameWithType: IQueryableAnalyzer.SupportsLinqToObjects
- uid: System.Linq.Dynamic.Core.PagedResult
name: PagedResult
href: api/System.Linq.Dynamic.Core.PagedResult.html
commentId: T:System.Linq.Dynamic.Core.PagedResult
fullName: System.Linq.Dynamic.Core.PagedResult
nameWithType: PagedResult
- uid: System.Linq.Dynamic.Core.PagedResult.CurrentPage
name: CurrentPage
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_CurrentPage
commentId: P:System.Linq.Dynamic.Core.PagedResult.CurrentPage
fullName: System.Linq.Dynamic.Core.PagedResult.CurrentPage
nameWithType: PagedResult.CurrentPage
- uid: System.Linq.Dynamic.Core.PagedResult.CurrentPage*
name: CurrentPage
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_CurrentPage_
commentId: Overload:System.Linq.Dynamic.Core.PagedResult.CurrentPage
isSpec: "True"
fullName: System.Linq.Dynamic.Core.PagedResult.CurrentPage
nameWithType: PagedResult.CurrentPage
- uid: System.Linq.Dynamic.Core.PagedResult.PageCount
name: PageCount
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_PageCount
commentId: P:System.Linq.Dynamic.Core.PagedResult.PageCount
fullName: System.Linq.Dynamic.Core.PagedResult.PageCount
nameWithType: PagedResult.PageCount
- uid: System.Linq.Dynamic.Core.PagedResult.PageCount*
name: PageCount
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_PageCount_
commentId: Overload:System.Linq.Dynamic.Core.PagedResult.PageCount
isSpec: "True"
fullName: System.Linq.Dynamic.Core.PagedResult.PageCount
nameWithType: PagedResult.PageCount
- uid: System.Linq.Dynamic.Core.PagedResult.PageSize
name: PageSize
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_PageSize
commentId: P:System.Linq.Dynamic.Core.PagedResult.PageSize
fullName: System.Linq.Dynamic.Core.PagedResult.PageSize
nameWithType: PagedResult.PageSize
- uid: System.Linq.Dynamic.Core.PagedResult.PageSize*
name: PageSize
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_PageSize_
commentId: Overload:System.Linq.Dynamic.Core.PagedResult.PageSize
isSpec: "True"
fullName: System.Linq.Dynamic.Core.PagedResult.PageSize
nameWithType: PagedResult.PageSize
- uid: System.Linq.Dynamic.Core.PagedResult.Queryable
name: Queryable
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_Queryable
commentId: P:System.Linq.Dynamic.Core.PagedResult.Queryable
fullName: System.Linq.Dynamic.Core.PagedResult.Queryable
nameWithType: PagedResult.Queryable
- uid: System.Linq.Dynamic.Core.PagedResult.Queryable*
name: Queryable
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_Queryable_
commentId: Overload:System.Linq.Dynamic.Core.PagedResult.Queryable
isSpec: "True"
fullName: System.Linq.Dynamic.Core.PagedResult.Queryable
nameWithType: PagedResult.Queryable
- uid: System.Linq.Dynamic.Core.PagedResult.RowCount
name: RowCount
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_RowCount
commentId: P:System.Linq.Dynamic.Core.PagedResult.RowCount
fullName: System.Linq.Dynamic.Core.PagedResult.RowCount
nameWithType: PagedResult.RowCount
- uid: System.Linq.Dynamic.Core.PagedResult.RowCount*
name: RowCount
href: api/System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_RowCount_
commentId: Overload:System.Linq.Dynamic.Core.PagedResult.RowCount
isSpec: "True"
fullName: System.Linq.Dynamic.Core.PagedResult.RowCount
nameWithType: PagedResult.RowCount
- uid: System.Linq.Dynamic.Core.PagedResult`1
name: PagedResult<TSource>
href: api/System.Linq.Dynamic.Core.PagedResult-1.html
commentId: T:System.Linq.Dynamic.Core.PagedResult`1
name.vb: PagedResult(Of TSource)
fullName: System.Linq.Dynamic.Core.PagedResult<TSource>
fullName.vb: System.Linq.Dynamic.Core.PagedResult(Of TSource)
nameWithType: PagedResult<TSource>
nameWithType.vb: PagedResult(Of TSource)
- uid: System.Linq.Dynamic.Core.PagedResult`1.Queryable
name: Queryable
href: api/System.Linq.Dynamic.Core.PagedResult-1.html#System_Linq_Dynamic_Core_PagedResult_1_Queryable
commentId: P:System.Linq.Dynamic.Core.PagedResult`1.Queryable
fullName: System.Linq.Dynamic.Core.PagedResult<TSource>.Queryable
fullName.vb: System.Linq.Dynamic.Core.PagedResult(Of TSource).Queryable
nameWithType: PagedResult<TSource>.Queryable
nameWithType.vb: PagedResult(Of TSource).Queryable
- uid: System.Linq.Dynamic.Core.PagedResult`1.Queryable*
name: Queryable
href: api/System.Linq.Dynamic.Core.PagedResult-1.html#System_Linq_Dynamic_Core_PagedResult_1_Queryable_
commentId: Overload:System.Linq.Dynamic.Core.PagedResult`1.Queryable
isSpec: "True"
fullName: System.Linq.Dynamic.Core.PagedResult<TSource>.Queryable
fullName.vb: System.Linq.Dynamic.Core.PagedResult(Of TSource).Queryable
nameWithType: PagedResult<TSource>.Queryable
nameWithType.vb: PagedResult(Of TSource).Queryable
- uid: System.Linq.Dynamic.Core.Parser
name: System.Linq.Dynamic.Core.Parser
href: api/System.Linq.Dynamic.Core.Parser.html
commentId: N:System.Linq.Dynamic.Core.Parser
fullName: System.Linq.Dynamic.Core.Parser
nameWithType: System.Linq.Dynamic.Core.Parser
- uid: System.Linq.Dynamic.Core.Parser.ExpressionParser
name: ExpressionParser
href: api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html
commentId: T:System.Linq.Dynamic.Core.Parser.ExpressionParser
fullName: System.Linq.Dynamic.Core.Parser.ExpressionParser
nameWithType: ExpressionParser
- uid: System.Linq.Dynamic.Core.Parser.ExpressionParser.#ctor(System.Linq.Expressions.ParameterExpression[],System.String,System.Object[],System.Linq.Dynamic.Core.ParsingConfig)
name: ExpressionParser(ParameterExpression[], String, Object[], ParsingConfig)
href: api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html#your_sha256_hashyour_sha256_hash___System_Linq_Dynamic_Core_ParsingConfig_
commentId: M:System.Linq.Dynamic.Core.Parser.ExpressionParser.#ctor(System.Linq.Expressions.ParameterExpression[],System.String,System.Object[],System.Linq.Dynamic.Core.ParsingConfig)
name.vb: ExpressionParser(ParameterExpression(), String, Object(), ParsingConfig)
fullName: System.Linq.Dynamic.Core.Parser.ExpressionParser.ExpressionParser(System.Linq.Expressions.ParameterExpression[], System.String, System.Object[], System.Linq.Dynamic.Core.ParsingConfig)
fullName.vb: System.Linq.Dynamic.Core.Parser.ExpressionParser.ExpressionParser(System.Linq.Expressions.ParameterExpression(), System.String, System.Object(), System.Linq.Dynamic.Core.ParsingConfig)
nameWithType: ExpressionParser.ExpressionParser(ParameterExpression[], String, Object[], ParsingConfig)
nameWithType.vb: ExpressionParser.ExpressionParser(ParameterExpression(), String, Object(), ParsingConfig)
- uid: System.Linq.Dynamic.Core.Parser.ExpressionParser.#ctor*
name: ExpressionParser
href: api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html#System_Linq_Dynamic_Core_Parser_ExpressionParser__ctor_
commentId: Overload:System.Linq.Dynamic.Core.Parser.ExpressionParser.#ctor
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.ExpressionParser.ExpressionParser
nameWithType: ExpressionParser.ExpressionParser
- uid: System.Linq.Dynamic.Core.Parser.ExpressionParser.ItName
name: ItName
href: api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html#System_Linq_Dynamic_Core_Parser_ExpressionParser_ItName
commentId: P:System.Linq.Dynamic.Core.Parser.ExpressionParser.ItName
fullName: System.Linq.Dynamic.Core.Parser.ExpressionParser.ItName
nameWithType: ExpressionParser.ItName
- uid: System.Linq.Dynamic.Core.Parser.ExpressionParser.ItName*
name: ItName
href: api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html#System_Linq_Dynamic_Core_Parser_ExpressionParser_ItName_
commentId: Overload:System.Linq.Dynamic.Core.Parser.ExpressionParser.ItName
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.ExpressionParser.ItName
nameWithType: ExpressionParser.ItName
- uid: System.Linq.Dynamic.Core.Parser.ExpressionParser.LastLambdaItName
name: LastLambdaItName
href: api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html#your_sha256_hashe
commentId: P:System.Linq.Dynamic.Core.Parser.ExpressionParser.LastLambdaItName
fullName: System.Linq.Dynamic.Core.Parser.ExpressionParser.LastLambdaItName
nameWithType: ExpressionParser.LastLambdaItName
- uid: System.Linq.Dynamic.Core.Parser.ExpressionParser.LastLambdaItName*
name: LastLambdaItName
href: api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html#your_sha256_hashe_
commentId: Overload:System.Linq.Dynamic.Core.Parser.ExpressionParser.LastLambdaItName
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.ExpressionParser.LastLambdaItName
nameWithType: ExpressionParser.LastLambdaItName
- uid: System.Linq.Dynamic.Core.Parser.ExpressionParser.Parse(System.Type,System.Boolean)
name: Parse(Type, Boolean)
href: api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html#your_sha256_hashpe_System_Boolean_
commentId: M:System.Linq.Dynamic.Core.Parser.ExpressionParser.Parse(System.Type,System.Boolean)
fullName: System.Linq.Dynamic.Core.Parser.ExpressionParser.Parse(System.Type, System.Boolean)
nameWithType: ExpressionParser.Parse(Type, Boolean)
- uid: System.Linq.Dynamic.Core.Parser.ExpressionParser.Parse*
name: Parse
href: api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html#System_Linq_Dynamic_Core_Parser_ExpressionParser_Parse_
commentId: Overload:System.Linq.Dynamic.Core.Parser.ExpressionParser.Parse
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.ExpressionParser.Parse
nameWithType: ExpressionParser.Parse
- uid: System.Linq.Dynamic.Core.Parser.ExpressionPromoter
name: ExpressionPromoter
href: api/System.Linq.Dynamic.Core.Parser.ExpressionPromoter.html
commentId: T:System.Linq.Dynamic.Core.Parser.ExpressionPromoter
fullName: System.Linq.Dynamic.Core.Parser.ExpressionPromoter
nameWithType: ExpressionPromoter
- uid: System.Linq.Dynamic.Core.Parser.ExpressionPromoter.#ctor(System.Linq.Dynamic.Core.ParsingConfig)
name: ExpressionPromoter(ParsingConfig)
href: api/System.Linq.Dynamic.Core.Parser.ExpressionPromoter.html#your_sha256_hashLinq_Dynamic_Core_ParsingConfig_
commentId: M:System.Linq.Dynamic.Core.Parser.ExpressionPromoter.#ctor(System.Linq.Dynamic.Core.ParsingConfig)
fullName: System.Linq.Dynamic.Core.Parser.ExpressionPromoter.ExpressionPromoter(System.Linq.Dynamic.Core.ParsingConfig)
nameWithType: ExpressionPromoter.ExpressionPromoter(ParsingConfig)
- uid: System.Linq.Dynamic.Core.Parser.ExpressionPromoter.#ctor*
name: ExpressionPromoter
href: api/System.Linq.Dynamic.Core.Parser.ExpressionPromoter.html#System_Linq_Dynamic_Core_Parser_ExpressionPromoter__ctor_
commentId: Overload:System.Linq.Dynamic.Core.Parser.ExpressionPromoter.#ctor
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.ExpressionPromoter.ExpressionPromoter
nameWithType: ExpressionPromoter.ExpressionPromoter
- uid: System.Linq.Dynamic.Core.Parser.ExpressionPromoter.Promote(System.Linq.Expressions.Expression,System.Type,System.Boolean,System.Boolean)
name: Promote(Expression, Type, Boolean, Boolean)
href: api/System.Linq.Dynamic.Core.Parser.ExpressionPromoter.html#your_sha256_hashyour_sha256_hashBoolean_
commentId: M:System.Linq.Dynamic.Core.Parser.ExpressionPromoter.Promote(System.Linq.Expressions.Expression,System.Type,System.Boolean,System.Boolean)
fullName: System.Linq.Dynamic.Core.Parser.ExpressionPromoter.Promote(System.Linq.Expressions.Expression, System.Type, System.Boolean, System.Boolean)
nameWithType: ExpressionPromoter.Promote(Expression, Type, Boolean, Boolean)
- uid: System.Linq.Dynamic.Core.Parser.ExpressionPromoter.Promote*
name: Promote
href: api/System.Linq.Dynamic.Core.Parser.ExpressionPromoter.html#System_Linq_Dynamic_Core_Parser_ExpressionPromoter_Promote_
commentId: Overload:System.Linq.Dynamic.Core.Parser.ExpressionPromoter.Promote
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.ExpressionPromoter.Promote
nameWithType: ExpressionPromoter.Promote
- uid: System.Linq.Dynamic.Core.Parser.IExpressionPromoter
name: IExpressionPromoter
href: api/System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html
commentId: T:System.Linq.Dynamic.Core.Parser.IExpressionPromoter
fullName: System.Linq.Dynamic.Core.Parser.IExpressionPromoter
nameWithType: IExpressionPromoter
- uid: System.Linq.Dynamic.Core.Parser.IExpressionPromoter.Promote(System.Linq.Expressions.Expression,System.Type,System.Boolean,System.Boolean)
name: Promote(Expression, Type, Boolean, Boolean)
href: api/System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html#your_sha256_hashyour_sha256_hash_Boolean_
commentId: M:System.Linq.Dynamic.Core.Parser.IExpressionPromoter.Promote(System.Linq.Expressions.Expression,System.Type,System.Boolean,System.Boolean)
fullName: System.Linq.Dynamic.Core.Parser.IExpressionPromoter.Promote(System.Linq.Expressions.Expression, System.Type, System.Boolean, System.Boolean)
nameWithType: IExpressionPromoter.Promote(Expression, Type, Boolean, Boolean)
- uid: System.Linq.Dynamic.Core.Parser.IExpressionPromoter.Promote*
name: Promote
href: api/System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html#System_Linq_Dynamic_Core_Parser_IExpressionPromoter_Promote_
commentId: Overload:System.Linq.Dynamic.Core.Parser.IExpressionPromoter.Promote
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.IExpressionPromoter.Promote
nameWithType: IExpressionPromoter.Promote
- uid: System.Linq.Dynamic.Core.Parser.NumberParser
name: NumberParser
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html
commentId: T:System.Linq.Dynamic.Core.Parser.NumberParser
fullName: System.Linq.Dynamic.Core.Parser.NumberParser
nameWithType: NumberParser
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.#ctor(System.Linq.Dynamic.Core.ParsingConfig)
name: NumberParser(ParsingConfig)
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#your_sha256_hashynamic_Core_ParsingConfig_
commentId: M:System.Linq.Dynamic.Core.Parser.NumberParser.#ctor(System.Linq.Dynamic.Core.ParsingConfig)
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.NumberParser(System.Linq.Dynamic.Core.ParsingConfig)
nameWithType: NumberParser.NumberParser(ParsingConfig)
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.#ctor*
name: NumberParser
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#System_Linq_Dynamic_Core_Parser_NumberParser__ctor_
commentId: Overload:System.Linq.Dynamic.Core.Parser.NumberParser.#ctor
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.NumberParser
nameWithType: NumberParser.NumberParser
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.ParseIntegerLiteral(System.Int32,System.String)
name: ParseIntegerLiteral(Int32, String)
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#your_sha256_hash_System_Int32_System_String_
commentId: M:System.Linq.Dynamic.Core.Parser.NumberParser.ParseIntegerLiteral(System.Int32,System.String)
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.ParseIntegerLiteral(System.Int32, System.String)
nameWithType: NumberParser.ParseIntegerLiteral(Int32, String)
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.ParseIntegerLiteral*
name: ParseIntegerLiteral
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#your_sha256_hash_
commentId: Overload:System.Linq.Dynamic.Core.Parser.NumberParser.ParseIntegerLiteral
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.ParseIntegerLiteral
nameWithType: NumberParser.ParseIntegerLiteral
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.ParseNumber(System.String,System.Type)
name: ParseNumber(String, Type)
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#your_sha256_hashString_System_Type_
commentId: M:System.Linq.Dynamic.Core.Parser.NumberParser.ParseNumber(System.String,System.Type)
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.ParseNumber(System.String, System.Type)
nameWithType: NumberParser.ParseNumber(String, Type)
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.ParseNumber*
name: ParseNumber
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#System_Linq_Dynamic_Core_Parser_NumberParser_ParseNumber_
commentId: Overload:System.Linq.Dynamic.Core.Parser.NumberParser.ParseNumber
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.ParseNumber
nameWithType: NumberParser.ParseNumber
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.ParseRealLiteral(System.String,System.Char,System.Boolean)
name: ParseRealLiteral(String, Char, Boolean)
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#your_sha256_hashstem_String_System_Char_System_Boolean_
commentId: M:System.Linq.Dynamic.Core.Parser.NumberParser.ParseRealLiteral(System.String,System.Char,System.Boolean)
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.ParseRealLiteral(System.String, System.Char, System.Boolean)
nameWithType: NumberParser.ParseRealLiteral(String, Char, Boolean)
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.ParseRealLiteral*
name: ParseRealLiteral
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#System_Linq_Dynamic_Core_Parser_NumberParser_ParseRealLiteral_
commentId: Overload:System.Linq.Dynamic.Core.Parser.NumberParser.ParseRealLiteral
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.ParseRealLiteral
nameWithType: NumberParser.ParseRealLiteral
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.TryParseNumber(System.String,System.Type,System.Object@)
name: TryParseNumber(String, Type, out Object)
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#your_sha256_hashem_String_System_Type_System_Object__
commentId: M:System.Linq.Dynamic.Core.Parser.NumberParser.TryParseNumber(System.String,System.Type,System.Object@)
name.vb: TryParseNumber(String, Type, ByRef Object)
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.TryParseNumber(System.String, System.Type, out System.Object)
fullName.vb: System.Linq.Dynamic.Core.Parser.NumberParser.TryParseNumber(System.String, System.Type, ByRef System.Object)
nameWithType: NumberParser.TryParseNumber(String, Type, out Object)
nameWithType.vb: NumberParser.TryParseNumber(String, Type, ByRef Object)
- uid: System.Linq.Dynamic.Core.Parser.NumberParser.TryParseNumber*
name: TryParseNumber
href: api/System.Linq.Dynamic.Core.Parser.NumberParser.html#System_Linq_Dynamic_Core_Parser_NumberParser_TryParseNumber_
commentId: Overload:System.Linq.Dynamic.Core.Parser.NumberParser.TryParseNumber
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Parser.NumberParser.TryParseNumber
nameWithType: NumberParser.TryParseNumber
- uid: System.Linq.Dynamic.Core.ParsingConfig
name: ParsingConfig
href: api/System.Linq.Dynamic.Core.ParsingConfig.html
commentId: T:System.Linq.Dynamic.Core.ParsingConfig
fullName: System.Linq.Dynamic.Core.ParsingConfig
nameWithType: ParsingConfig
- uid: System.Linq.Dynamic.Core.ParsingConfig.AllowNewToEvaluateAnyType
name: AllowNewToEvaluateAnyType
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.AllowNewToEvaluateAnyType
fullName: System.Linq.Dynamic.Core.ParsingConfig.AllowNewToEvaluateAnyType
nameWithType: ParsingConfig.AllowNewToEvaluateAnyType
- uid: System.Linq.Dynamic.Core.ParsingConfig.AllowNewToEvaluateAnyType*
name: AllowNewToEvaluateAnyType
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.AllowNewToEvaluateAnyType
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.AllowNewToEvaluateAnyType
nameWithType: ParsingConfig.AllowNewToEvaluateAnyType
- uid: System.Linq.Dynamic.Core.ParsingConfig.AreContextKeywordsEnabled
name: AreContextKeywordsEnabled
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.AreContextKeywordsEnabled
fullName: System.Linq.Dynamic.Core.ParsingConfig.AreContextKeywordsEnabled
nameWithType: ParsingConfig.AreContextKeywordsEnabled
- uid: System.Linq.Dynamic.Core.ParsingConfig.AreContextKeywordsEnabled*
name: AreContextKeywordsEnabled
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.AreContextKeywordsEnabled
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.AreContextKeywordsEnabled
nameWithType: ParsingConfig.AreContextKeywordsEnabled
- uid: System.Linq.Dynamic.Core.ParsingConfig.ConstantExpressionCacheConfig
name: ConstantExpressionCacheConfig
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashnfig
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.ConstantExpressionCacheConfig
fullName: System.Linq.Dynamic.Core.ParsingConfig.ConstantExpressionCacheConfig
nameWithType: ParsingConfig.ConstantExpressionCacheConfig
- uid: System.Linq.Dynamic.Core.ParsingConfig.ConstantExpressionCacheConfig*
name: ConstantExpressionCacheConfig
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashnfig_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.ConstantExpressionCacheConfig
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.ConstantExpressionCacheConfig
nameWithType: ParsingConfig.ConstantExpressionCacheConfig
- uid: System.Linq.Dynamic.Core.ParsingConfig.ConvertObjectToSupportComparison
name: ConvertObjectToSupportComparison
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashparison
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.ConvertObjectToSupportComparison
fullName: System.Linq.Dynamic.Core.ParsingConfig.ConvertObjectToSupportComparison
nameWithType: ParsingConfig.ConvertObjectToSupportComparison
- uid: System.Linq.Dynamic.Core.ParsingConfig.ConvertObjectToSupportComparison*
name: ConvertObjectToSupportComparison
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashparison_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.ConvertObjectToSupportComparison
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.ConvertObjectToSupportComparison
nameWithType: ParsingConfig.ConvertObjectToSupportComparison
- uid: System.Linq.Dynamic.Core.ParsingConfig.CustomTypeProvider
name: CustomTypeProvider
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_CustomTypeProvider
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.CustomTypeProvider
fullName: System.Linq.Dynamic.Core.ParsingConfig.CustomTypeProvider
nameWithType: ParsingConfig.CustomTypeProvider
- uid: System.Linq.Dynamic.Core.ParsingConfig.CustomTypeProvider*
name: CustomTypeProvider
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_CustomTypeProvider_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.CustomTypeProvider
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.CustomTypeProvider
nameWithType: ParsingConfig.CustomTypeProvider
- uid: System.Linq.Dynamic.Core.ParsingConfig.DateTimeIsParsedAsUTC
name: DateTimeIsParsedAsUTC
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_DateTimeIsParsedAsUTC
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.DateTimeIsParsedAsUTC
fullName: System.Linq.Dynamic.Core.ParsingConfig.DateTimeIsParsedAsUTC
nameWithType: ParsingConfig.DateTimeIsParsedAsUTC
- uid: System.Linq.Dynamic.Core.ParsingConfig.DateTimeIsParsedAsUTC*
name: DateTimeIsParsedAsUTC
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_DateTimeIsParsedAsUTC_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.DateTimeIsParsedAsUTC
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.DateTimeIsParsedAsUTC
nameWithType: ParsingConfig.DateTimeIsParsedAsUTC
- uid: System.Linq.Dynamic.Core.ParsingConfig.Default
name: Default
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_Default
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.Default
fullName: System.Linq.Dynamic.Core.ParsingConfig.Default
nameWithType: ParsingConfig.Default
- uid: System.Linq.Dynamic.Core.ParsingConfig.Default*
name: Default
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_Default_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.Default
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.Default
nameWithType: ParsingConfig.Default
- uid: System.Linq.Dynamic.Core.ParsingConfig.DefaultCosmosDb
name: DefaultCosmosDb
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_DefaultCosmosDb
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.DefaultCosmosDb
fullName: System.Linq.Dynamic.Core.ParsingConfig.DefaultCosmosDb
nameWithType: ParsingConfig.DefaultCosmosDb
- uid: System.Linq.Dynamic.Core.ParsingConfig.DefaultCosmosDb*
name: DefaultCosmosDb
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_DefaultCosmosDb_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.DefaultCosmosDb
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.DefaultCosmosDb
nameWithType: ParsingConfig.DefaultCosmosDb
- uid: System.Linq.Dynamic.Core.ParsingConfig.DefaultEFCore21
name: DefaultEFCore21
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_DefaultEFCore21
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.DefaultEFCore21
fullName: System.Linq.Dynamic.Core.ParsingConfig.DefaultEFCore21
nameWithType: ParsingConfig.DefaultEFCore21
- uid: System.Linq.Dynamic.Core.ParsingConfig.DefaultEFCore21*
name: DefaultEFCore21
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_DefaultEFCore21_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.DefaultEFCore21
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.DefaultEFCore21
nameWithType: ParsingConfig.DefaultEFCore21
- uid: System.Linq.Dynamic.Core.ParsingConfig.DisableMemberAccessToIndexAccessorFallback
name: DisableMemberAccessToIndexAccessorFallback
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashxAccessorFallback
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.DisableMemberAccessToIndexAccessorFallback
fullName: System.Linq.Dynamic.Core.ParsingConfig.DisableMemberAccessToIndexAccessorFallback
nameWithType: ParsingConfig.DisableMemberAccessToIndexAccessorFallback
- uid: System.Linq.Dynamic.Core.ParsingConfig.DisableMemberAccessToIndexAccessorFallback*
name: DisableMemberAccessToIndexAccessorFallback
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashxAccessorFallback_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.DisableMemberAccessToIndexAccessorFallback
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.DisableMemberAccessToIndexAccessorFallback
nameWithType: ParsingConfig.DisableMemberAccessToIndexAccessorFallback
- uid: System.Linq.Dynamic.Core.ParsingConfig.DisallowNewKeyword
name: DisallowNewKeyword
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_DisallowNewKeyword
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.DisallowNewKeyword
fullName: System.Linq.Dynamic.Core.ParsingConfig.DisallowNewKeyword
nameWithType: ParsingConfig.DisallowNewKeyword
- uid: System.Linq.Dynamic.Core.ParsingConfig.DisallowNewKeyword*
name: DisallowNewKeyword
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_DisallowNewKeyword_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.DisallowNewKeyword
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.DisallowNewKeyword
nameWithType: ParsingConfig.DisallowNewKeyword
- uid: System.Linq.Dynamic.Core.ParsingConfig.EvaluateGroupByAtDatabase
name: EvaluateGroupByAtDatabase
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.EvaluateGroupByAtDatabase
fullName: System.Linq.Dynamic.Core.ParsingConfig.EvaluateGroupByAtDatabase
nameWithType: ParsingConfig.EvaluateGroupByAtDatabase
- uid: System.Linq.Dynamic.Core.ParsingConfig.EvaluateGroupByAtDatabase*
name: EvaluateGroupByAtDatabase
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.EvaluateGroupByAtDatabase
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.EvaluateGroupByAtDatabase
nameWithType: ParsingConfig.EvaluateGroupByAtDatabase
- uid: System.Linq.Dynamic.Core.ParsingConfig.ExpressionPromoter
name: ExpressionPromoter
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_ExpressionPromoter
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.ExpressionPromoter
fullName: System.Linq.Dynamic.Core.ParsingConfig.ExpressionPromoter
nameWithType: ParsingConfig.ExpressionPromoter
- uid: System.Linq.Dynamic.Core.ParsingConfig.ExpressionPromoter*
name: ExpressionPromoter
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_ExpressionPromoter_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.ExpressionPromoter
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.ExpressionPromoter
nameWithType: ParsingConfig.ExpressionPromoter
- uid: System.Linq.Dynamic.Core.ParsingConfig.IsCaseSensitive
name: IsCaseSensitive
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_IsCaseSensitive
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.IsCaseSensitive
fullName: System.Linq.Dynamic.Core.ParsingConfig.IsCaseSensitive
nameWithType: ParsingConfig.IsCaseSensitive
- uid: System.Linq.Dynamic.Core.ParsingConfig.IsCaseSensitive*
name: IsCaseSensitive
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_IsCaseSensitive_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.IsCaseSensitive
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.IsCaseSensitive
nameWithType: ParsingConfig.IsCaseSensitive
- uid: System.Linq.Dynamic.Core.ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory
name: LoadAdditionalAssembliesFromCurrentDomainBaseDirectory
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashromCurrentDomainBaseDirectory
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory
fullName: System.Linq.Dynamic.Core.ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory
nameWithType: ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory
- uid: System.Linq.Dynamic.Core.ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory*
name: LoadAdditionalAssembliesFromCurrentDomainBaseDirectory
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashromCurrentDomainBaseDirectory_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory
nameWithType: ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory
- uid: System.Linq.Dynamic.Core.ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes
name: NullPropagatingUseDefaultValueForNonNullableValueTypes
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashValueForNonNullableValueTypes
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes
fullName: System.Linq.Dynamic.Core.ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes
nameWithType: ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes
- uid: System.Linq.Dynamic.Core.ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes*
name: NullPropagatingUseDefaultValueForNonNullableValueTypes
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashValueForNonNullableValueTypes_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes
nameWithType: ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes
- uid: System.Linq.Dynamic.Core.ParsingConfig.NumberParseCulture
name: NumberParseCulture
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_NumberParseCulture
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.NumberParseCulture
fullName: System.Linq.Dynamic.Core.ParsingConfig.NumberParseCulture
nameWithType: ParsingConfig.NumberParseCulture
- uid: System.Linq.Dynamic.Core.ParsingConfig.NumberParseCulture*
name: NumberParseCulture
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_NumberParseCulture_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.NumberParseCulture
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.NumberParseCulture
nameWithType: ParsingConfig.NumberParseCulture
- uid: System.Linq.Dynamic.Core.ParsingConfig.PrioritizePropertyOrFieldOverTheType
name: PrioritizePropertyOrFieldOverTheType
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashOverTheType
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.PrioritizePropertyOrFieldOverTheType
fullName: System.Linq.Dynamic.Core.ParsingConfig.PrioritizePropertyOrFieldOverTheType
nameWithType: ParsingConfig.PrioritizePropertyOrFieldOverTheType
- uid: System.Linq.Dynamic.Core.ParsingConfig.PrioritizePropertyOrFieldOverTheType*
name: PrioritizePropertyOrFieldOverTheType
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashOverTheType_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.PrioritizePropertyOrFieldOverTheType
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.PrioritizePropertyOrFieldOverTheType
nameWithType: ParsingConfig.PrioritizePropertyOrFieldOverTheType
- uid: System.Linq.Dynamic.Core.ParsingConfig.QueryableAnalyzer
name: QueryableAnalyzer
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_QueryableAnalyzer
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.QueryableAnalyzer
fullName: System.Linq.Dynamic.Core.ParsingConfig.QueryableAnalyzer
nameWithType: ParsingConfig.QueryableAnalyzer
- uid: System.Linq.Dynamic.Core.ParsingConfig.QueryableAnalyzer*
name: QueryableAnalyzer
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_QueryableAnalyzer_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.QueryableAnalyzer
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.QueryableAnalyzer
nameWithType: ParsingConfig.QueryableAnalyzer
- uid: System.Linq.Dynamic.Core.ParsingConfig.RenameEmptyParameterExpressionNames
name: RenameEmptyParameterExpressionNames
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashssionNames
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.RenameEmptyParameterExpressionNames
fullName: System.Linq.Dynamic.Core.ParsingConfig.RenameEmptyParameterExpressionNames
nameWithType: ParsingConfig.RenameEmptyParameterExpressionNames
- uid: System.Linq.Dynamic.Core.ParsingConfig.RenameEmptyParameterExpressionNames*
name: RenameEmptyParameterExpressionNames
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashssionNames_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.RenameEmptyParameterExpressionNames
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.RenameEmptyParameterExpressionNames
nameWithType: ParsingConfig.RenameEmptyParameterExpressionNames
- uid: System.Linq.Dynamic.Core.ParsingConfig.RenameParameterExpression
name: RenameParameterExpression
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.RenameParameterExpression
fullName: System.Linq.Dynamic.Core.ParsingConfig.RenameParameterExpression
nameWithType: ParsingConfig.RenameParameterExpression
- uid: System.Linq.Dynamic.Core.ParsingConfig.RenameParameterExpression*
name: RenameParameterExpression
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.RenameParameterExpression
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.RenameParameterExpression
nameWithType: ParsingConfig.RenameParameterExpression
- uid: System.Linq.Dynamic.Core.ParsingConfig.ResolveTypesBySimpleName
name: ResolveTypesBySimpleName
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_ResolveTypesBySimpleName
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.ResolveTypesBySimpleName
fullName: System.Linq.Dynamic.Core.ParsingConfig.ResolveTypesBySimpleName
nameWithType: ParsingConfig.ResolveTypesBySimpleName
- uid: System.Linq.Dynamic.Core.ParsingConfig.ResolveTypesBySimpleName*
name: ResolveTypesBySimpleName
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.ResolveTypesBySimpleName
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.ResolveTypesBySimpleName
nameWithType: ParsingConfig.ResolveTypesBySimpleName
- uid: System.Linq.Dynamic.Core.ParsingConfig.StringLiteralParsing
name: StringLiteralParsing
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_StringLiteralParsing
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.StringLiteralParsing
fullName: System.Linq.Dynamic.Core.ParsingConfig.StringLiteralParsing
nameWithType: ParsingConfig.StringLiteralParsing
- uid: System.Linq.Dynamic.Core.ParsingConfig.StringLiteralParsing*
name: StringLiteralParsing
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_StringLiteralParsing_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.StringLiteralParsing
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.StringLiteralParsing
nameWithType: ParsingConfig.StringLiteralParsing
- uid: System.Linq.Dynamic.Core.ParsingConfig.SupportCastingToFullyQualifiedTypeAsString
name: SupportCastingToFullyQualifiedTypeAsString
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashifiedTypeAsString
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.SupportCastingToFullyQualifiedTypeAsString
fullName: System.Linq.Dynamic.Core.ParsingConfig.SupportCastingToFullyQualifiedTypeAsString
nameWithType: ParsingConfig.SupportCastingToFullyQualifiedTypeAsString
- uid: System.Linq.Dynamic.Core.ParsingConfig.SupportCastingToFullyQualifiedTypeAsString*
name: SupportCastingToFullyQualifiedTypeAsString
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashifiedTypeAsString_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.SupportCastingToFullyQualifiedTypeAsString
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.SupportCastingToFullyQualifiedTypeAsString
nameWithType: ParsingConfig.SupportCastingToFullyQualifiedTypeAsString
- uid: System.Linq.Dynamic.Core.ParsingConfig.SupportDotInPropertyNames
name: SupportDotInPropertyNames
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.SupportDotInPropertyNames
fullName: System.Linq.Dynamic.Core.ParsingConfig.SupportDotInPropertyNames
nameWithType: ParsingConfig.SupportDotInPropertyNames
- uid: System.Linq.Dynamic.Core.ParsingConfig.SupportDotInPropertyNames*
name: SupportDotInPropertyNames
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hash_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.SupportDotInPropertyNames
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.SupportDotInPropertyNames
nameWithType: ParsingConfig.SupportDotInPropertyNames
- uid: System.Linq.Dynamic.Core.ParsingConfig.SupportEnumerationsFromSystemNamespace
name: SupportEnumerationsFromSystemNamespace
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashstemNamespace
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.SupportEnumerationsFromSystemNamespace
fullName: System.Linq.Dynamic.Core.ParsingConfig.SupportEnumerationsFromSystemNamespace
nameWithType: ParsingConfig.SupportEnumerationsFromSystemNamespace
- uid: System.Linq.Dynamic.Core.ParsingConfig.SupportEnumerationsFromSystemNamespace*
name: SupportEnumerationsFromSystemNamespace
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashstemNamespace_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.SupportEnumerationsFromSystemNamespace
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.SupportEnumerationsFromSystemNamespace
nameWithType: ParsingConfig.SupportEnumerationsFromSystemNamespace
- uid: System.Linq.Dynamic.Core.ParsingConfig.TypeConverters
name: TypeConverters
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_TypeConverters
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.TypeConverters
fullName: System.Linq.Dynamic.Core.ParsingConfig.TypeConverters
nameWithType: ParsingConfig.TypeConverters
- uid: System.Linq.Dynamic.Core.ParsingConfig.TypeConverters*
name: TypeConverters
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#System_Linq_Dynamic_Core_ParsingConfig_TypeConverters_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.TypeConverters
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.TypeConverters
nameWithType: ParsingConfig.TypeConverters
- uid: System.Linq.Dynamic.Core.ParsingConfig.UseParameterizedNamesInDynamicQuery
name: UseParameterizedNamesInDynamicQuery
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashnamicQuery
commentId: P:System.Linq.Dynamic.Core.ParsingConfig.UseParameterizedNamesInDynamicQuery
fullName: System.Linq.Dynamic.Core.ParsingConfig.UseParameterizedNamesInDynamicQuery
nameWithType: ParsingConfig.UseParameterizedNamesInDynamicQuery
- uid: System.Linq.Dynamic.Core.ParsingConfig.UseParameterizedNamesInDynamicQuery*
name: UseParameterizedNamesInDynamicQuery
href: api/System.Linq.Dynamic.Core.ParsingConfig.html#your_sha256_hashnamicQuery_
commentId: Overload:System.Linq.Dynamic.Core.ParsingConfig.UseParameterizedNamesInDynamicQuery
isSpec: "True"
fullName: System.Linq.Dynamic.Core.ParsingConfig.UseParameterizedNamesInDynamicQuery
nameWithType: ParsingConfig.UseParameterizedNamesInDynamicQuery
- uid: System.Linq.Dynamic.Core.Tokenizer
name: System.Linq.Dynamic.Core.Tokenizer
href: api/System.Linq.Dynamic.Core.Tokenizer.html
commentId: N:System.Linq.Dynamic.Core.Tokenizer
fullName: System.Linq.Dynamic.Core.Tokenizer
nameWithType: System.Linq.Dynamic.Core.Tokenizer
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser
name: TextParser
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html
commentId: T:System.Linq.Dynamic.Core.Tokenizer.TextParser
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser
nameWithType: TextParser
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.#ctor(System.Linq.Dynamic.Core.ParsingConfig,System.String)
name: TextParser(ParsingConfig, String)
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#your_sha256_hashDynamic_Core_ParsingConfig_System_String_
commentId: M:System.Linq.Dynamic.Core.Tokenizer.TextParser.#ctor(System.Linq.Dynamic.Core.ParsingConfig,System.String)
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.TextParser(System.Linq.Dynamic.Core.ParsingConfig, System.String)
nameWithType: TextParser.TextParser(ParsingConfig, String)
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.#ctor*
name: TextParser
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#System_Linq_Dynamic_Core_Tokenizer_TextParser__ctor_
commentId: Overload:System.Linq.Dynamic.Core.Tokenizer.TextParser.#ctor
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.TextParser
nameWithType: TextParser.TextParser
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.Clone
name: Clone()
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#System_Linq_Dynamic_Core_Tokenizer_TextParser_Clone
commentId: M:System.Linq.Dynamic.Core.Tokenizer.TextParser.Clone
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.Clone()
nameWithType: TextParser.Clone()
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.Clone*
name: Clone
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#System_Linq_Dynamic_Core_Tokenizer_TextParser_Clone_
commentId: Overload:System.Linq.Dynamic.Core.Tokenizer.TextParser.Clone
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.Clone
nameWithType: TextParser.Clone
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.CurrentToken
name: CurrentToken
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#System_Linq_Dynamic_Core_Tokenizer_TextParser_CurrentToken
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TextParser.CurrentToken
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.CurrentToken
nameWithType: TextParser.CurrentToken
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.NextToken
name: NextToken()
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#System_Linq_Dynamic_Core_Tokenizer_TextParser_NextToken
commentId: M:System.Linq.Dynamic.Core.Tokenizer.TextParser.NextToken
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.NextToken()
nameWithType: TextParser.NextToken()
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.NextToken*
name: NextToken
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#System_Linq_Dynamic_Core_Tokenizer_TextParser_NextToken_
commentId: Overload:System.Linq.Dynamic.Core.Tokenizer.TextParser.NextToken
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.NextToken
nameWithType: TextParser.NextToken
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.PeekNextChar
name: PeekNextChar()
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#System_Linq_Dynamic_Core_Tokenizer_TextParser_PeekNextChar
commentId: M:System.Linq.Dynamic.Core.Tokenizer.TextParser.PeekNextChar
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.PeekNextChar()
nameWithType: TextParser.PeekNextChar()
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.PeekNextChar*
name: PeekNextChar
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#System_Linq_Dynamic_Core_Tokenizer_TextParser_PeekNextChar_
commentId: Overload:System.Linq.Dynamic.Core.Tokenizer.TextParser.PeekNextChar
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.PeekNextChar
nameWithType: TextParser.PeekNextChar
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.ValidateToken(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.String)
name: ValidateToken(TokenId, String)
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#your_sha256_hashem_Linq_Dynamic_Core_Tokenizer_TokenId_System_String_
commentId: M:System.Linq.Dynamic.Core.Tokenizer.TextParser.ValidateToken(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.String)
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.ValidateToken(System.Linq.Dynamic.Core.Tokenizer.TokenId, System.String)
nameWithType: TextParser.ValidateToken(TokenId, String)
- uid: System.Linq.Dynamic.Core.Tokenizer.TextParser.ValidateToken*
name: ValidateToken
href: api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html#System_Linq_Dynamic_Core_Tokenizer_TextParser_ValidateToken_
commentId: Overload:System.Linq.Dynamic.Core.Tokenizer.TextParser.ValidateToken
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Tokenizer.TextParser.ValidateToken
nameWithType: TextParser.ValidateToken
- uid: System.Linq.Dynamic.Core.Tokenizer.Token
name: Token
href: api/System.Linq.Dynamic.Core.Tokenizer.Token.html
commentId: T:System.Linq.Dynamic.Core.Tokenizer.Token
fullName: System.Linq.Dynamic.Core.Tokenizer.Token
nameWithType: Token
- uid: System.Linq.Dynamic.Core.Tokenizer.Token.Id
name: Id
href: api/System.Linq.Dynamic.Core.Tokenizer.Token.html#System_Linq_Dynamic_Core_Tokenizer_Token_Id
commentId: P:System.Linq.Dynamic.Core.Tokenizer.Token.Id
fullName: System.Linq.Dynamic.Core.Tokenizer.Token.Id
nameWithType: Token.Id
- uid: System.Linq.Dynamic.Core.Tokenizer.Token.Id*
name: Id
href: api/System.Linq.Dynamic.Core.Tokenizer.Token.html#System_Linq_Dynamic_Core_Tokenizer_Token_Id_
commentId: Overload:System.Linq.Dynamic.Core.Tokenizer.Token.Id
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Tokenizer.Token.Id
nameWithType: Token.Id
- uid: System.Linq.Dynamic.Core.Tokenizer.Token.OriginalId
name: OriginalId
href: api/System.Linq.Dynamic.Core.Tokenizer.Token.html#System_Linq_Dynamic_Core_Tokenizer_Token_OriginalId
commentId: P:System.Linq.Dynamic.Core.Tokenizer.Token.OriginalId
fullName: System.Linq.Dynamic.Core.Tokenizer.Token.OriginalId
nameWithType: Token.OriginalId
- uid: System.Linq.Dynamic.Core.Tokenizer.Token.OriginalId*
name: OriginalId
href: api/System.Linq.Dynamic.Core.Tokenizer.Token.html#System_Linq_Dynamic_Core_Tokenizer_Token_OriginalId_
commentId: Overload:System.Linq.Dynamic.Core.Tokenizer.Token.OriginalId
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Tokenizer.Token.OriginalId
nameWithType: Token.OriginalId
- uid: System.Linq.Dynamic.Core.Tokenizer.Token.Pos
name: Pos
href: api/System.Linq.Dynamic.Core.Tokenizer.Token.html#System_Linq_Dynamic_Core_Tokenizer_Token_Pos
commentId: P:System.Linq.Dynamic.Core.Tokenizer.Token.Pos
fullName: System.Linq.Dynamic.Core.Tokenizer.Token.Pos
nameWithType: Token.Pos
- uid: System.Linq.Dynamic.Core.Tokenizer.Token.Pos*
name: Pos
href: api/System.Linq.Dynamic.Core.Tokenizer.Token.html#System_Linq_Dynamic_Core_Tokenizer_Token_Pos_
commentId: Overload:System.Linq.Dynamic.Core.Tokenizer.Token.Pos
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Tokenizer.Token.Pos
nameWithType: Token.Pos
- uid: System.Linq.Dynamic.Core.Tokenizer.Token.Text
name: Text
href: api/System.Linq.Dynamic.Core.Tokenizer.Token.html#System_Linq_Dynamic_Core_Tokenizer_Token_Text
commentId: P:System.Linq.Dynamic.Core.Tokenizer.Token.Text
fullName: System.Linq.Dynamic.Core.Tokenizer.Token.Text
nameWithType: Token.Text
- uid: System.Linq.Dynamic.Core.Tokenizer.Token.Text*
name: Text
href: api/System.Linq.Dynamic.Core.Tokenizer.Token.html#System_Linq_Dynamic_Core_Tokenizer_Token_Text_
commentId: Overload:System.Linq.Dynamic.Core.Tokenizer.Token.Text
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Tokenizer.Token.Text
nameWithType: Token.Text
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId
name: TokenId
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html
commentId: T:System.Linq.Dynamic.Core.Tokenizer.TokenId
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId
nameWithType: TokenId
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Ampersand
name: Ampersand
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Ampersand
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Ampersand
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Ampersand
nameWithType: TokenId.Ampersand
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Asterisk
name: Asterisk
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Asterisk
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Asterisk
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Asterisk
nameWithType: TokenId.Asterisk
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Bar
name: Bar
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Bar
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Bar
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Bar
nameWithType: TokenId.Bar
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.CloseBracket
name: CloseBracket
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_CloseBracket
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.CloseBracket
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.CloseBracket
nameWithType: TokenId.CloseBracket
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.CloseCurlyParen
name: CloseCurlyParen
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_CloseCurlyParen
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.CloseCurlyParen
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.CloseCurlyParen
nameWithType: TokenId.CloseCurlyParen
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.CloseParen
name: CloseParen
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_CloseParen
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.CloseParen
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.CloseParen
nameWithType: TokenId.CloseParen
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Colon
name: Colon
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Colon
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Colon
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Colon
nameWithType: TokenId.Colon
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Comma
name: Comma
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Comma
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Comma
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Comma
nameWithType: TokenId.Comma
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Dot
name: Dot
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Dot
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Dot
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Dot
nameWithType: TokenId.Dot
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleAmpersand
name: DoubleAmpersand
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleAmpersand
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleAmpersand
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleAmpersand
nameWithType: TokenId.DoubleAmpersand
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleBar
name: DoubleBar
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleBar
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleBar
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleBar
nameWithType: TokenId.DoubleBar
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleEqual
name: DoubleEqual
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleEqual
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleEqual
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleEqual
nameWithType: TokenId.DoubleEqual
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleGreaterThan
name: DoubleGreaterThan
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleGreaterThan
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleGreaterThan
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleGreaterThan
nameWithType: TokenId.DoubleGreaterThan
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleLessThan
name: DoubleLessThan
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleLessThan
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleLessThan
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.DoubleLessThan
nameWithType: TokenId.DoubleLessThan
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.End
name: End
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_End
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.End
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.End
nameWithType: TokenId.End
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Equal
name: Equal
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Equal
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Equal
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Equal
nameWithType: TokenId.Equal
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Exclamation
name: Exclamation
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Exclamation
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Exclamation
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Exclamation
nameWithType: TokenId.Exclamation
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.ExclamationEqual
name: ExclamationEqual
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_ExclamationEqual
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.ExclamationEqual
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.ExclamationEqual
nameWithType: TokenId.ExclamationEqual
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.GreaterThan
name: GreaterThan
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_GreaterThan
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.GreaterThan
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.GreaterThan
nameWithType: TokenId.GreaterThan
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.GreaterThanEqual
name: GreaterThanEqual
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_GreaterThanEqual
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.GreaterThanEqual
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.GreaterThanEqual
nameWithType: TokenId.GreaterThanEqual
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Identifier
name: Identifier
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Identifier
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Identifier
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Identifier
nameWithType: TokenId.Identifier
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.IntegerLiteral
name: IntegerLiteral
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_IntegerLiteral
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.IntegerLiteral
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.IntegerLiteral
nameWithType: TokenId.IntegerLiteral
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Lambda
name: Lambda
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Lambda
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Lambda
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Lambda
nameWithType: TokenId.Lambda
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.LessGreater
name: LessGreater
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_LessGreater
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.LessGreater
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.LessGreater
nameWithType: TokenId.LessGreater
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.LessThan
name: LessThan
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_LessThan
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.LessThan
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.LessThan
nameWithType: TokenId.LessThan
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.LessThanEqual
name: LessThanEqual
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_LessThanEqual
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.LessThanEqual
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.LessThanEqual
nameWithType: TokenId.LessThanEqual
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Minus
name: Minus
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Minus
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Minus
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Minus
nameWithType: TokenId.Minus
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.NullCoalescing
name: NullCoalescing
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_NullCoalescing
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.NullCoalescing
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.NullCoalescing
nameWithType: TokenId.NullCoalescing
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.NullPropagation
name: NullPropagation
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_NullPropagation
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.NullPropagation
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.NullPropagation
nameWithType: TokenId.NullPropagation
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.OpenBracket
name: OpenBracket
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_OpenBracket
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.OpenBracket
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.OpenBracket
nameWithType: TokenId.OpenBracket
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.OpenCurlyParen
name: OpenCurlyParen
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_OpenCurlyParen
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.OpenCurlyParen
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.OpenCurlyParen
nameWithType: TokenId.OpenCurlyParen
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.OpenParen
name: OpenParen
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_OpenParen
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.OpenParen
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.OpenParen
nameWithType: TokenId.OpenParen
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Percent
name: Percent
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Percent
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Percent
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Percent
nameWithType: TokenId.Percent
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Plus
name: Plus
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Plus
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Plus
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Plus
nameWithType: TokenId.Plus
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Question
name: Question
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Question
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Question
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Question
nameWithType: TokenId.Question
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.RealLiteral
name: RealLiteral
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_RealLiteral
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.RealLiteral
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.RealLiteral
nameWithType: TokenId.RealLiteral
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Slash
name: Slash
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Slash
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Slash
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Slash
nameWithType: TokenId.Slash
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.StringLiteral
name: StringLiteral
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_StringLiteral
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.StringLiteral
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.StringLiteral
nameWithType: TokenId.StringLiteral
- uid: System.Linq.Dynamic.Core.Tokenizer.TokenId.Unknown
name: Unknown
href: api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html#System_Linq_Dynamic_Core_Tokenizer_TokenId_Unknown
commentId: F:System.Linq.Dynamic.Core.Tokenizer.TokenId.Unknown
fullName: System.Linq.Dynamic.Core.Tokenizer.TokenId.Unknown
nameWithType: TokenId.Unknown
- uid: System.Linq.Dynamic.Core.Util.Cache
name: System.Linq.Dynamic.Core.Util.Cache
href: api/System.Linq.Dynamic.Core.Util.Cache.html
commentId: N:System.Linq.Dynamic.Core.Util.Cache
fullName: System.Linq.Dynamic.Core.Util.Cache
nameWithType: System.Linq.Dynamic.Core.Util.Cache
- uid: System.Linq.Dynamic.Core.Util.Cache.CacheConfig
name: CacheConfig
href: api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html
commentId: T:System.Linq.Dynamic.Core.Util.Cache.CacheConfig
fullName: System.Linq.Dynamic.Core.Util.Cache.CacheConfig
nameWithType: CacheConfig
- uid: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.CleanupFrequency
name: CleanupFrequency
href: api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html#your_sha256_hash
commentId: P:System.Linq.Dynamic.Core.Util.Cache.CacheConfig.CleanupFrequency
fullName: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.CleanupFrequency
nameWithType: CacheConfig.CleanupFrequency
- uid: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.CleanupFrequency*
name: CleanupFrequency
href: api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html#your_sha256_hash_
commentId: Overload:System.Linq.Dynamic.Core.Util.Cache.CacheConfig.CleanupFrequency
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.CleanupFrequency
nameWithType: CacheConfig.CleanupFrequency
- uid: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.MinItemsTrigger
name: MinItemsTrigger
href: api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html#System_Linq_Dynamic_Core_Util_Cache_CacheConfig_MinItemsTrigger
commentId: P:System.Linq.Dynamic.Core.Util.Cache.CacheConfig.MinItemsTrigger
fullName: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.MinItemsTrigger
nameWithType: CacheConfig.MinItemsTrigger
- uid: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.MinItemsTrigger*
name: MinItemsTrigger
href: api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html#your_sha256_hash
commentId: Overload:System.Linq.Dynamic.Core.Util.Cache.CacheConfig.MinItemsTrigger
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.MinItemsTrigger
nameWithType: CacheConfig.MinItemsTrigger
- uid: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.ReturnExpiredItems
name: ReturnExpiredItems
href: api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html#your_sha256_hashms
commentId: P:System.Linq.Dynamic.Core.Util.Cache.CacheConfig.ReturnExpiredItems
fullName: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.ReturnExpiredItems
nameWithType: CacheConfig.ReturnExpiredItems
- uid: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.ReturnExpiredItems*
name: ReturnExpiredItems
href: api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html#your_sha256_hashms_
commentId: Overload:System.Linq.Dynamic.Core.Util.Cache.CacheConfig.ReturnExpiredItems
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.ReturnExpiredItems
nameWithType: CacheConfig.ReturnExpiredItems
- uid: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.TimeToLive
name: TimeToLive
href: api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html#System_Linq_Dynamic_Core_Util_Cache_CacheConfig_TimeToLive
commentId: P:System.Linq.Dynamic.Core.Util.Cache.CacheConfig.TimeToLive
fullName: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.TimeToLive
nameWithType: CacheConfig.TimeToLive
- uid: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.TimeToLive*
name: TimeToLive
href: api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html#System_Linq_Dynamic_Core_Util_Cache_CacheConfig_TimeToLive_
commentId: Overload:System.Linq.Dynamic.Core.Util.Cache.CacheConfig.TimeToLive
isSpec: "True"
fullName: System.Linq.Dynamic.Core.Util.Cache.CacheConfig.TimeToLive
nameWithType: CacheConfig.TimeToLive
- uid: System.Tuple`2
name: Tuple<T1, T2>
href: api/System.Tuple-2.html
commentId: T:System.Tuple`2
name.vb: Tuple(Of T1, T2)
fullName: System.Tuple<T1, T2>
fullName.vb: System.Tuple(Of T1, T2)
nameWithType: Tuple<T1, T2>
nameWithType.vb: Tuple(Of T1, T2)
- uid: System.Tuple`2.Item1
name: Item1
href: api/System.Tuple-2.html#System_Tuple_2_Item1
commentId: P:System.Tuple`2.Item1
fullName: System.Tuple<T1, T2>.Item1
fullName.vb: System.Tuple(Of T1, T2).Item1
nameWithType: Tuple<T1, T2>.Item1
nameWithType.vb: Tuple(Of T1, T2).Item1
- uid: System.Tuple`2.Item1*
name: Item1
href: api/System.Tuple-2.html#System_Tuple_2_Item1_
commentId: Overload:System.Tuple`2.Item1
isSpec: "True"
fullName: System.Tuple<T1, T2>.Item1
fullName.vb: System.Tuple(Of T1, T2).Item1
nameWithType: Tuple<T1, T2>.Item1
nameWithType.vb: Tuple(Of T1, T2).Item1
- uid: System.Tuple`2.Item2
name: Item2
href: api/System.Tuple-2.html#System_Tuple_2_Item2
commentId: P:System.Tuple`2.Item2
fullName: System.Tuple<T1, T2>.Item2
fullName.vb: System.Tuple(Of T1, T2).Item2
nameWithType: Tuple<T1, T2>.Item2
nameWithType.vb: Tuple(Of T1, T2).Item2
- uid: System.Tuple`2.Item2*
name: Item2
href: api/System.Tuple-2.html#System_Tuple_2_Item2_
commentId: Overload:System.Tuple`2.Item2
isSpec: "True"
fullName: System.Tuple<T1, T2>.Item2
fullName.vb: System.Tuple(Of T1, T2).Item2
nameWithType: Tuple<T1, T2>.Item2
nameWithType.vb: Tuple(Of T1, T2).Item2
```
|
/content/code_sandbox/docs/xrefmap.yml
|
yaml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 61,040
|
```javascript
(function(){var lunr=function(config){var builder=new lunr.Builder;builder.pipeline.add(lunr.trimmer,lunr.stopWordFilter,lunr.stemmer);builder.searchPipeline.add(lunr.stemmer);config.call(builder,builder);return builder.build()};lunr.version="2.1.2";lunr.utils={};lunr.utils.warn=function(global){return function(message){if(global.console&&console.warn){console.warn(message)}}}(this);lunr.utils.asString=function(obj){if(obj===void 0||obj===null){return""}else{return obj.toString()}};lunr.FieldRef=function(docRef,fieldName){this.docRef=docRef;this.fieldName=fieldName;this._stringValue=fieldName+lunr.FieldRef.joiner+docRef};lunr.FieldRef.joiner="/";lunr.FieldRef.fromString=function(s){var n=s.indexOf(lunr.FieldRef.joiner);if(n===-1){throw"malformed field ref string"}var fieldRef=s.slice(0,n),docRef=s.slice(n+1);return new lunr.FieldRef(docRef,fieldRef)};lunr.FieldRef.prototype.toString=function(){return this._stringValue};lunr.idf=function(posting,documentCount){var documentsWithTerm=0;for(var fieldName in posting){if(fieldName=="_index")continue;documentsWithTerm+=Object.keys(posting[fieldName]).length}var x=(documentCount-documentsWithTerm+.5)/(documentsWithTerm+.5);return Math.log(1+Math.abs(x))};lunr.Token=function(str,metadata){this.str=str||"";this.metadata=metadata||{}};lunr.Token.prototype.toString=function(){return this.str};lunr.Token.prototype.update=function(fn){this.str=fn(this.str,this.metadata);return this};lunr.Token.prototype.clone=function(fn){fn=fn||function(s){return s};return new lunr.Token(fn(this.str,this.metadata),this.metadata)};lunr.tokenizer=function(obj){if(obj==null||obj==undefined){return[]}if(Array.isArray(obj)){return obj.map((function(t){return new lunr.Token(lunr.utils.asString(t).toLowerCase())}))}var str=obj.toString().trim().toLowerCase(),len=str.length,tokens=[];for(var sliceEnd=0,sliceStart=0;sliceEnd<=len;sliceEnd++){var char=str.charAt(sliceEnd),sliceLength=sliceEnd-sliceStart;if(char.match(lunr.tokenizer.separator)||sliceEnd==len){if(sliceLength>0){tokens.push(new lunr.Token(str.slice(sliceStart,sliceEnd),{position:[sliceStart,sliceLength],index:tokens.length}))}sliceStart=sliceEnd+1}}return tokens};lunr.tokenizer.separator=/[\s\-]+/;lunr.Pipeline=function(){this._stack=[]};lunr.Pipeline.registeredFunctions=Object.create(null);lunr.Pipeline.registerFunction=function(fn,label){if(label in this.registeredFunctions){lunr.utils.warn("Overwriting existing registered function: "+label)}fn.label=label;lunr.Pipeline.registeredFunctions[fn.label]=fn};lunr.Pipeline.warnIfFunctionNotRegistered=function(fn){var isRegistered=fn.label&&fn.label in this.registeredFunctions;if(!isRegistered){lunr.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",fn)}};lunr.Pipeline.load=function(serialised){var pipeline=new lunr.Pipeline;serialised.forEach((function(fnName){var fn=lunr.Pipeline.registeredFunctions[fnName];if(fn){pipeline.add(fn)}else{throw new Error("Cannot load unregistered function: "+fnName)}}));return pipeline};lunr.Pipeline.prototype.add=function(){var fns=Array.prototype.slice.call(arguments);fns.forEach((function(fn){lunr.Pipeline.warnIfFunctionNotRegistered(fn);this._stack.push(fn)}),this)};lunr.Pipeline.prototype.after=function(existingFn,newFn){lunr.Pipeline.warnIfFunctionNotRegistered(newFn);var pos=this._stack.indexOf(existingFn);if(pos==-1){throw new Error("Cannot find existingFn")}pos=pos+1;this._stack.splice(pos,0,newFn)};lunr.Pipeline.prototype.before=function(existingFn,newFn){lunr.Pipeline.warnIfFunctionNotRegistered(newFn);var pos=this._stack.indexOf(existingFn);if(pos==-1){throw new Error("Cannot find existingFn")}this._stack.splice(pos,0,newFn)};lunr.Pipeline.prototype.remove=function(fn){var pos=this._stack.indexOf(fn);if(pos==-1){return}this._stack.splice(pos,1)};lunr.Pipeline.prototype.run=function(tokens){var stackLength=this._stack.length;for(var i=0;i<stackLength;i++){var fn=this._stack[i];tokens=tokens.reduce((function(memo,token,j){var result=fn(token,j,tokens);if(result===void 0||result==="")return memo;return memo.concat(result)}),[])}return tokens};lunr.Pipeline.prototype.runString=function(str){var token=new lunr.Token(str);return this.run([token]).map((function(t){return t.toString()}))};lunr.Pipeline.prototype.reset=function(){this._stack=[]};lunr.Pipeline.prototype.toJSON=function(){return this._stack.map((function(fn){lunr.Pipeline.warnIfFunctionNotRegistered(fn);return fn.label}))};lunr.Vector=function(elements){this._magnitude=0;this.elements=elements||[]};lunr.Vector.prototype.positionForIndex=function(index){if(this.elements.length==0){return 0}var start=0,end=this.elements.length/2,sliceLength=end-start,pivotPoint=Math.floor(sliceLength/2),pivotIndex=this.elements[pivotPoint*2];while(sliceLength>1){if(pivotIndex<index){start=pivotPoint}if(pivotIndex>index){end=pivotPoint}if(pivotIndex==index){break}sliceLength=end-start;pivotPoint=start+Math.floor(sliceLength/2);pivotIndex=this.elements[pivotPoint*2]}if(pivotIndex==index){return pivotPoint*2}if(pivotIndex>index){return pivotPoint*2}if(pivotIndex<index){return(pivotPoint+1)*2}};lunr.Vector.prototype.insert=function(insertIdx,val){this.upsert(insertIdx,val,(function(){throw"duplicate index"}))};lunr.Vector.prototype.upsert=function(insertIdx,val,fn){this._magnitude=0;var position=this.positionForIndex(insertIdx);if(this.elements[position]==insertIdx){this.elements[position+1]=fn(this.elements[position+1],val)}else{this.elements.splice(position,0,insertIdx,val)}};lunr.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;var sumOfSquares=0,elementsLength=this.elements.length;for(var i=1;i<elementsLength;i+=2){var val=this.elements[i];sumOfSquares+=val*val}return this._magnitude=Math.sqrt(sumOfSquares)};lunr.Vector.prototype.dot=function(otherVector){var dotProduct=0,a=this.elements,b=otherVector.elements,aLen=a.length,bLen=b.length,aVal=0,bVal=0,i=0,j=0;while(i<aLen&&j<bLen){aVal=a[i],bVal=b[j];if(aVal<bVal){i+=2}else if(aVal>bVal){j+=2}else if(aVal==bVal){dotProduct+=a[i+1]*b[j+1];i+=2;j+=2}}return dotProduct};lunr.Vector.prototype.similarity=function(otherVector){return this.dot(otherVector)/(this.magnitude()*otherVector.magnitude())};lunr.Vector.prototype.toArray=function(){var output=new Array(this.elements.length/2);for(var i=1,j=0;i<this.elements.length;i+=2,j++){output[j]=this.elements[i]}return output};lunr.Vector.prototype.toJSON=function(){return this.elements};lunr.stemmer=function(){var step2list={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},step3list={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},c="[^aeiou]",v="[aeiouy]",C=c+"[^aeiouy]*",V=v+"[aeiou]*",mgr0="^("+C+")?"+V+C,meq1="^("+C+")?"+V+C+"("+V+")?$",mgr1="^("+C+")?"+V+C+V+C,s_v="^("+C+")?"+v;var re_mgr0=new RegExp(mgr0);var re_mgr1=new RegExp(mgr1);var re_meq1=new RegExp(meq1);var re_s_v=new RegExp(s_v);var re_1a=/^(.+?)(ss|i)es$/;var re2_1a=/^(.+?)([^s])s$/;var re_1b=/^(.+?)eed$/;var re2_1b=/^(.+?)(ed|ing)$/;var re_1b_2=/.$/;var re2_1b_2=/(at|bl|iz)$/;var re3_1b_2=new RegExp("([^aeiouylsz])\\1$");var re4_1b_2=new RegExp("^"+C+v+"[^aeiouwxy]$");var re_1c=/^(.+?[^aeiou])y$/;var re_2=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;var re_3=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;var re_4=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;var re2_4=/^(.+?)(s|t)(ion)$/;var re_5=/^(.+?)e$/;var re_5_1=/ll$/;var re3_5=new RegExp("^"+C+v+"[^aeiouwxy]$");var porterStemmer=function porterStemmer(w){var stem,suffix,firstch,re,re2,re3,re4;if(w.length<3){return w}firstch=w.substr(0,1);if(firstch=="y"){w=firstch.toUpperCase()+w.substr(1)}re=re_1a;re2=re2_1a;if(re.test(w)){w=w.replace(re,"$1$2")}else if(re2.test(w)){w=w.replace(re2,"$1$2")}re=re_1b;re2=re2_1b;if(re.test(w)){var fp=re.exec(w);re=re_mgr0;if(re.test(fp[1])){re=re_1b_2;w=w.replace(re,"")}}else if(re2.test(w)){var fp=re2.exec(w);stem=fp[1];re2=re_s_v;if(re2.test(stem)){w=stem;re2=re2_1b_2;re3=re3_1b_2;re4=re4_1b_2;if(re2.test(w)){w=w+"e"}else if(re3.test(w)){re=re_1b_2;w=w.replace(re,"")}else if(re4.test(w)){w=w+"e"}}}re=re_1c;if(re.test(w)){var fp=re.exec(w);stem=fp[1];w=stem+"i"}re=re_2;if(re.test(w)){var fp=re.exec(w);stem=fp[1];suffix=fp[2];re=re_mgr0;if(re.test(stem)){w=stem+step2list[suffix]}}re=re_3;if(re.test(w)){var fp=re.exec(w);stem=fp[1];suffix=fp[2];re=re_mgr0;if(re.test(stem)){w=stem+step3list[suffix]}}re=re_4;re2=re2_4;if(re.test(w)){var fp=re.exec(w);stem=fp[1];re=re_mgr1;if(re.test(stem)){w=stem}}else if(re2.test(w)){var fp=re2.exec(w);stem=fp[1]+fp[2];re2=re_mgr1;if(re2.test(stem)){w=stem}}re=re_5;if(re.test(w)){var fp=re.exec(w);stem=fp[1];re=re_mgr1;re2=re_meq1;re3=re3_5;if(re.test(stem)||re2.test(stem)&&!re3.test(stem)){w=stem}}re=re_5_1;re2=re_mgr1;if(re.test(w)&&re2.test(w)){re=re_1b_2;w=w.replace(re,"")}if(firstch=="y"){w=firstch.toLowerCase()+w.substr(1)}return w};return function(token){return token.update(porterStemmer)}}();lunr.Pipeline.registerFunction(lunr.stemmer,"stemmer");lunr.generateStopWordFilter=function(stopWords){var words=stopWords.reduce((function(memo,stopWord){memo[stopWord]=stopWord;return memo}),{});return function(token){if(token&&words[token.toString()]!==token.toString())return token}};lunr.stopWordFilter=lunr.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]);lunr.Pipeline.registerFunction(lunr.stopWordFilter,"stopWordFilter");lunr.trimmer=function(token){return token.update((function(s){return s.replace(/^\W+/,"").replace(/\W+$/,"")}))};lunr.Pipeline.registerFunction(lunr.trimmer,"trimmer");lunr.TokenSet=function(){this.final=false;this.edges={};this.id=lunr.TokenSet._nextId;lunr.TokenSet._nextId+=1};lunr.TokenSet._nextId=1;lunr.TokenSet.fromArray=function(arr){var builder=new lunr.TokenSet.Builder;for(var i=0,len=arr.length;i<len;i++){builder.insert(arr[i])}builder.finish();return builder.root};lunr.TokenSet.fromClause=function(clause){if("editDistance"in clause){return lunr.TokenSet.fromFuzzyString(clause.term,clause.editDistance)}else{return lunr.TokenSet.fromString(clause.term)}};lunr.TokenSet.fromFuzzyString=function(str,editDistance){var root=new lunr.TokenSet;var stack=[{node:root,editsRemaining:editDistance,str:str}];while(stack.length){var frame=stack.pop();if(frame.str.length>0){var char=frame.str.charAt(0),noEditNode;if(char in frame.node.edges){noEditNode=frame.node.edges[char]}else{noEditNode=new lunr.TokenSet;frame.node.edges[char]=noEditNode}if(frame.str.length==1){noEditNode.final=true}else{stack.push({node:noEditNode,editsRemaining:frame.editsRemaining,str:frame.str.slice(1)})}}if(frame.editsRemaining>0&&frame.str.length>1){var char=frame.str.charAt(1),deletionNode;if(char in frame.node.edges){deletionNode=frame.node.edges[char]}else{deletionNode=new lunr.TokenSet;frame.node.edges[char]=deletionNode}if(frame.str.length<=2){deletionNode.final=true}else{stack.push({node:deletionNode,editsRemaining:frame.editsRemaining-1,str:frame.str.slice(2)})}}if(frame.editsRemaining>0&&frame.str.length==1){frame.node.final=true}if(frame.editsRemaining>0&&frame.str.length>=1){if("*"in frame.node.edges){var substitutionNode=frame.node.edges["*"]}else{var substitutionNode=new lunr.TokenSet;frame.node.edges["*"]=substitutionNode}if(frame.str.length==1){substitutionNode.final=true}else{stack.push({node:substitutionNode,editsRemaining:frame.editsRemaining-1,str:frame.str.slice(1)})}}if(frame.editsRemaining>0){if("*"in frame.node.edges){var insertionNode=frame.node.edges["*"]}else{var insertionNode=new lunr.TokenSet;frame.node.edges["*"]=insertionNode}if(frame.str.length==0){insertionNode.final=true}else{stack.push({node:insertionNode,editsRemaining:frame.editsRemaining-1,str:frame.str})}}if(frame.editsRemaining>0&&frame.str.length>1){var charA=frame.str.charAt(0),charB=frame.str.charAt(1),transposeNode;if(charB in frame.node.edges){transposeNode=frame.node.edges[charB]}else{transposeNode=new lunr.TokenSet;frame.node.edges[charB]=transposeNode}if(frame.str.length==1){transposeNode.final=true}else{stack.push({node:transposeNode,editsRemaining:frame.editsRemaining-1,str:charA+frame.str.slice(2)})}}}return root};lunr.TokenSet.fromString=function(str){var node=new lunr.TokenSet,root=node,wildcardFound=false;for(var i=0,len=str.length;i<len;i++){var char=str[i],final=i==len-1;if(char=="*"){wildcardFound=true;node.edges[char]=node;node.final=final}else{var next=new lunr.TokenSet;next.final=final;node.edges[char]=next;node=next;if(wildcardFound){node.edges["*"]=root}}}return root};lunr.TokenSet.prototype.toArray=function(){var words=[];var stack=[{prefix:"",node:this}];while(stack.length){var frame=stack.pop(),edges=Object.keys(frame.node.edges),len=edges.length;if(frame.node.final){words.push(frame.prefix)}for(var i=0;i<len;i++){var edge=edges[i];stack.push({prefix:frame.prefix.concat(edge),node:frame.node.edges[edge]})}}return words};lunr.TokenSet.prototype.toString=function(){if(this._str){return this._str}var str=this.final?"1":"0",labels=Object.keys(this.edges).sort(),len=labels.length;for(var i=0;i<len;i++){var label=labels[i],node=this.edges[label];str=str+label+node.id}return str};lunr.TokenSet.prototype.intersect=function(b){var output=new lunr.TokenSet,frame=undefined;var stack=[{qNode:b,output:output,node:this}];while(stack.length){frame=stack.pop();var qEdges=Object.keys(frame.qNode.edges),qLen=qEdges.length,nEdges=Object.keys(frame.node.edges),nLen=nEdges.length;for(var q=0;q<qLen;q++){var qEdge=qEdges[q];for(var n=0;n<nLen;n++){var nEdge=nEdges[n];if(nEdge==qEdge||qEdge=="*"){var node=frame.node.edges[nEdge],qNode=frame.qNode.edges[qEdge],final=node.final&&qNode.final,next=undefined;if(nEdge in frame.output.edges){next=frame.output.edges[nEdge];next.final=next.final||final}else{next=new lunr.TokenSet;next.final=final;frame.output.edges[nEdge]=next}stack.push({qNode:qNode,output:next,node:node})}}}}return output};lunr.TokenSet.Builder=function(){this.previousWord="";this.root=new lunr.TokenSet;this.uncheckedNodes=[];this.minimizedNodes={}};lunr.TokenSet.Builder.prototype.insert=function(word){var node,commonPrefix=0;if(word<this.previousWord){throw new Error("Out of order word insertion")}for(var i=0;i<word.length&&i<this.previousWord.length;i++){if(word[i]!=this.previousWord[i])break;commonPrefix++}this.minimize(commonPrefix);if(this.uncheckedNodes.length==0){node=this.root}else{node=this.uncheckedNodes[this.uncheckedNodes.length-1].child}for(var i=commonPrefix;i<word.length;i++){var nextNode=new lunr.TokenSet,char=word[i];node.edges[char]=nextNode;this.uncheckedNodes.push({parent:node,char:char,child:nextNode});node=nextNode}node.final=true;this.previousWord=word};lunr.TokenSet.Builder.prototype.finish=function(){this.minimize(0)};lunr.TokenSet.Builder.prototype.minimize=function(downTo){for(var i=this.uncheckedNodes.length-1;i>=downTo;i--){var node=this.uncheckedNodes[i],childKey=node.child.toString();if(childKey in this.minimizedNodes){node.parent.edges[node.char]=this.minimizedNodes[childKey]}else{node.child._str=childKey;this.minimizedNodes[childKey]=node.child}this.uncheckedNodes.pop()}};lunr.Index=function(attrs){this.invertedIndex=attrs.invertedIndex;this.fieldVectors=attrs.fieldVectors;this.tokenSet=attrs.tokenSet;this.fields=attrs.fields;this.pipeline=attrs.pipeline};lunr.Index.prototype.search=function(queryString){return this.query((function(query){var parser=new lunr.QueryParser(queryString,query);parser.parse()}))};lunr.Index.prototype.query=function(fn){var query=new lunr.Query(this.fields),matchingFields=Object.create(null),queryVectors=Object.create(null);fn.call(query,query);for(var i=0;i<query.clauses.length;i++){var clause=query.clauses[i],terms=null;if(clause.usePipeline){terms=this.pipeline.runString(clause.term)}else{terms=[clause.term]}for(var m=0;m<terms.length;m++){var term=terms[m];clause.term=term;var termTokenSet=lunr.TokenSet.fromClause(clause),expandedTerms=this.tokenSet.intersect(termTokenSet).toArray();for(var j=0;j<expandedTerms.length;j++){var expandedTerm=expandedTerms[j],posting=this.invertedIndex[expandedTerm],termIndex=posting._index;for(var k=0;k<clause.fields.length;k++){var field=clause.fields[k],fieldPosting=posting[field],matchingDocumentRefs=Object.keys(fieldPosting);if(!(field in queryVectors)){queryVectors[field]=new lunr.Vector}queryVectors[field].upsert(termIndex,1*clause.boost,(function(a,b){return a+b}));for(var l=0;l<matchingDocumentRefs.length;l++){var matchingDocumentRef=matchingDocumentRefs[l],matchingFieldRef=new lunr.FieldRef(matchingDocumentRef,field),documentMetadata,matchData;documentMetadata=fieldPosting[matchingDocumentRef];matchData=new lunr.MatchData(expandedTerm,field,documentMetadata);if(matchingFieldRef in matchingFields){matchingFields[matchingFieldRef].combine(matchData)}else{matchingFields[matchingFieldRef]=matchData}}}}}}var matchingFieldRefs=Object.keys(matchingFields),results={};for(var i=0;i<matchingFieldRefs.length;i++){var fieldRef=lunr.FieldRef.fromString(matchingFieldRefs[i]),docRef=fieldRef.docRef,fieldVector=this.fieldVectors[fieldRef],score=queryVectors[fieldRef.fieldName].similarity(fieldVector);if(docRef in results){results[docRef].score+=score;results[docRef].matchData.combine(matchingFields[fieldRef])}else{results[docRef]={ref:docRef,score:score,matchData:matchingFields[fieldRef]}}}return Object.keys(results).map((function(key){return results[key]})).sort((function(a,b){return b.score-a.score}))};lunr.Index.prototype.toJSON=function(){var invertedIndex=Object.keys(this.invertedIndex).sort().map((function(term){return[term,this.invertedIndex[term]]}),this);var fieldVectors=Object.keys(this.fieldVectors).map((function(ref){return[ref,this.fieldVectors[ref].toJSON()]}),this);return{version:lunr.version,fields:this.fields,fieldVectors:fieldVectors,invertedIndex:invertedIndex,pipeline:this.pipeline.toJSON()}};lunr.Index.load=function(serializedIndex){var attrs={},fieldVectors={},serializedVectors=serializedIndex.fieldVectors,invertedIndex={},serializedInvertedIndex=serializedIndex.invertedIndex,tokenSetBuilder=new lunr.TokenSet.Builder,pipeline=lunr.Pipeline.load(serializedIndex.pipeline);if(serializedIndex.version!=lunr.version){lunr.utils.warn("Version mismatch when loading serialised index. Current version of lunr '"+lunr.version+"' does not match serialized index '"+serializedIndex.version+"'")}for(var i=0;i<serializedVectors.length;i++){var tuple=serializedVectors[i],ref=tuple[0],elements=tuple[1];fieldVectors[ref]=new lunr.Vector(elements)}for(var i=0;i<serializedInvertedIndex.length;i++){var tuple=serializedInvertedIndex[i],term=tuple[0],posting=tuple[1];tokenSetBuilder.insert(term);invertedIndex[term]=posting}tokenSetBuilder.finish();attrs.fields=serializedIndex.fields;attrs.fieldVectors=fieldVectors;attrs.invertedIndex=invertedIndex;attrs.tokenSet=tokenSetBuilder.root;attrs.pipeline=pipeline;return new lunr.Index(attrs)};lunr.Builder=function(){this._ref="id";this._fields=[];this.invertedIndex=Object.create(null);this.fieldTermFrequencies={};this.fieldLengths={};this.tokenizer=lunr.tokenizer;this.pipeline=new lunr.Pipeline;this.searchPipeline=new lunr.Pipeline;this.documentCount=0;this._b=.75;this._k1=1.2;this.termIndex=0;this.metadataWhitelist=[]};lunr.Builder.prototype.ref=function(ref){this._ref=ref};lunr.Builder.prototype.field=function(field){this._fields.push(field)};lunr.Builder.prototype.b=function(number){if(number<0){this._b=0}else if(number>1){this._b=1}else{this._b=number}};lunr.Builder.prototype.k1=function(number){this._k1=number};lunr.Builder.prototype.add=function(doc){var docRef=doc[this._ref];this.documentCount+=1;for(var i=0;i<this._fields.length;i++){var fieldName=this._fields[i],field=doc[fieldName],tokens=this.tokenizer(field),terms=this.pipeline.run(tokens),fieldRef=new lunr.FieldRef(docRef,fieldName),fieldTerms=Object.create(null);this.fieldTermFrequencies[fieldRef]=fieldTerms;this.fieldLengths[fieldRef]=0;this.fieldLengths[fieldRef]+=terms.length;for(var j=0;j<terms.length;j++){var term=terms[j];if(fieldTerms[term]==undefined){fieldTerms[term]=0}fieldTerms[term]+=1;if(this.invertedIndex[term]==undefined){var posting=Object.create(null);posting["_index"]=this.termIndex;this.termIndex+=1;for(var k=0;k<this._fields.length;k++){posting[this._fields[k]]=Object.create(null)}this.invertedIndex[term]=posting}if(this.invertedIndex[term][fieldName][docRef]==undefined){this.invertedIndex[term][fieldName][docRef]=Object.create(null)}for(var l=0;l<this.metadataWhitelist.length;l++){var metadataKey=this.metadataWhitelist[l],metadata=term.metadata[metadataKey];if(this.invertedIndex[term][fieldName][docRef][metadataKey]==undefined){this.invertedIndex[term][fieldName][docRef][metadataKey]=[]}this.invertedIndex[term][fieldName][docRef][metadataKey].push(metadata)}}}};lunr.Builder.prototype.calculateAverageFieldLengths=function(){var fieldRefs=Object.keys(this.fieldLengths),numberOfFields=fieldRefs.length,accumulator={},documentsWithField={};for(var i=0;i<numberOfFields;i++){var fieldRef=lunr.FieldRef.fromString(fieldRefs[i]),field=fieldRef.fieldName;documentsWithField[field]||(documentsWithField[field]=0);documentsWithField[field]+=1;accumulator[field]||(accumulator[field]=0);accumulator[field]+=this.fieldLengths[fieldRef]}for(var i=0;i<this._fields.length;i++){var field=this._fields[i];accumulator[field]=accumulator[field]/documentsWithField[field]}this.averageFieldLength=accumulator};lunr.Builder.prototype.createFieldVectors=function(){var fieldVectors={},fieldRefs=Object.keys(this.fieldTermFrequencies),fieldRefsLength=fieldRefs.length;for(var i=0;i<fieldRefsLength;i++){var fieldRef=lunr.FieldRef.fromString(fieldRefs[i]),field=fieldRef.fieldName,fieldLength=this.fieldLengths[fieldRef],fieldVector=new lunr.Vector,termFrequencies=this.fieldTermFrequencies[fieldRef],terms=Object.keys(termFrequencies),termsLength=terms.length;for(var j=0;j<termsLength;j++){var term=terms[j],tf=termFrequencies[term],termIndex=this.invertedIndex[term]._index,idf=lunr.idf(this.invertedIndex[term],this.documentCount),score=idf*((this._k1+1)*tf)/(this._k1*(1-this._b+this._b*(fieldLength/this.averageFieldLength[field]))+tf),scoreWithPrecision=Math.round(score*1e3)/1e3;fieldVector.insert(termIndex,scoreWithPrecision)}fieldVectors[fieldRef]=fieldVector}this.fieldVectors=fieldVectors};lunr.Builder.prototype.createTokenSet=function(){this.tokenSet=lunr.TokenSet.fromArray(Object.keys(this.invertedIndex).sort())};lunr.Builder.prototype.build=function(){this.calculateAverageFieldLengths();this.createFieldVectors();this.createTokenSet();return new lunr.Index({invertedIndex:this.invertedIndex,fieldVectors:this.fieldVectors,tokenSet:this.tokenSet,fields:this._fields,pipeline:this.searchPipeline})};lunr.Builder.prototype.use=function(fn){var args=Array.prototype.slice.call(arguments,1);args.unshift(this);fn.apply(this,args)};lunr.MatchData=function(term,field,metadata){var clonedMetadata=Object.create(null),metadataKeys=Object.keys(metadata);for(var i=0;i<metadataKeys.length;i++){var key=metadataKeys[i];clonedMetadata[key]=metadata[key].slice()}this.metadata=Object.create(null);this.metadata[term]=Object.create(null);this.metadata[term][field]=clonedMetadata};lunr.MatchData.prototype.combine=function(otherMatchData){var terms=Object.keys(otherMatchData.metadata);for(var i=0;i<terms.length;i++){var term=terms[i],fields=Object.keys(otherMatchData.metadata[term]);if(this.metadata[term]==undefined){this.metadata[term]=Object.create(null)}for(var j=0;j<fields.length;j++){var field=fields[j],keys=Object.keys(otherMatchData.metadata[term][field]);if(this.metadata[term][field]==undefined){this.metadata[term][field]=Object.create(null)}for(var k=0;k<keys.length;k++){var key=keys[k];if(this.metadata[term][field][key]==undefined){this.metadata[term][field][key]=otherMatchData.metadata[term][field][key]}else{this.metadata[term][field][key]=this.metadata[term][field][key].concat(otherMatchData.metadata[term][field][key])}}}}};lunr.Query=function(allFields){this.clauses=[];this.allFields=allFields};lunr.Query.wildcard=new String("*");lunr.Query.wildcard.NONE=0;lunr.Query.wildcard.LEADING=1;lunr.Query.wildcard.TRAILING=2;lunr.Query.prototype.clause=function(clause){if(!("fields"in clause)){clause.fields=this.allFields}if(!("boost"in clause)){clause.boost=1}if(!("usePipeline"in clause)){clause.usePipeline=true}if(!("wildcard"in clause)){clause.wildcard=lunr.Query.wildcard.NONE}if(clause.wildcard&lunr.Query.wildcard.LEADING&&clause.term.charAt(0)!=lunr.Query.wildcard){clause.term="*"+clause.term}if(clause.wildcard&lunr.Query.wildcard.TRAILING&&clause.term.slice(-1)!=lunr.Query.wildcard){clause.term=""+clause.term+"*"}this.clauses.push(clause);return this};lunr.Query.prototype.term=function(term,options){var clause=options||{};clause.term=term;this.clause(clause);return this};lunr.QueryParseError=function(message,start,end){this.name="QueryParseError";this.message=message;this.start=start;this.end=end};lunr.QueryParseError.prototype=new Error;lunr.QueryLexer=function(str){this.lexemes=[];this.str=str;this.length=str.length;this.pos=0;this.start=0;this.escapeCharPositions=[]};lunr.QueryLexer.prototype.run=function(){var state=lunr.QueryLexer.lexText;while(state){state=state(this)}};lunr.QueryLexer.prototype.sliceString=function(){var subSlices=[],sliceStart=this.start,sliceEnd=this.pos;for(var i=0;i<this.escapeCharPositions.length;i++){sliceEnd=this.escapeCharPositions[i];subSlices.push(this.str.slice(sliceStart,sliceEnd));sliceStart=sliceEnd+1}subSlices.push(this.str.slice(sliceStart,this.pos));this.escapeCharPositions.length=0;return subSlices.join("")};lunr.QueryLexer.prototype.emit=function(type){this.lexemes.push({type:type,str:this.sliceString(),start:this.start,end:this.pos});this.start=this.pos};lunr.QueryLexer.prototype.escapeCharacter=function(){this.escapeCharPositions.push(this.pos-1);this.pos+=1};lunr.QueryLexer.prototype.next=function(){if(this.pos>=this.length){return lunr.QueryLexer.EOS}var char=this.str.charAt(this.pos);this.pos+=1;return char};lunr.QueryLexer.prototype.width=function(){return this.pos-this.start};lunr.QueryLexer.prototype.ignore=function(){if(this.start==this.pos){this.pos+=1}this.start=this.pos};lunr.QueryLexer.prototype.backup=function(){this.pos-=1};lunr.QueryLexer.prototype.acceptDigitRun=function(){var char,charCode;do{char=this.next();charCode=char.charCodeAt(0)}while(charCode>47&&charCode<58);if(char!=lunr.QueryLexer.EOS){this.backup()}};lunr.QueryLexer.prototype.more=function(){return this.pos<this.length};lunr.QueryLexer.EOS="EOS";lunr.QueryLexer.FIELD="FIELD";lunr.QueryLexer.TERM="TERM";lunr.QueryLexer.EDIT_DISTANCE="EDIT_DISTANCE";lunr.QueryLexer.BOOST="BOOST";lunr.QueryLexer.lexField=function(lexer){lexer.backup();lexer.emit(lunr.QueryLexer.FIELD);lexer.ignore();return lunr.QueryLexer.lexText};lunr.QueryLexer.lexTerm=function(lexer){if(lexer.width()>1){lexer.backup();lexer.emit(lunr.QueryLexer.TERM)}lexer.ignore();if(lexer.more()){return lunr.QueryLexer.lexText}};lunr.QueryLexer.lexEditDistance=function(lexer){lexer.ignore();lexer.acceptDigitRun();lexer.emit(lunr.QueryLexer.EDIT_DISTANCE);return lunr.QueryLexer.lexText};lunr.QueryLexer.lexBoost=function(lexer){lexer.ignore();lexer.acceptDigitRun();lexer.emit(lunr.QueryLexer.BOOST);return lunr.QueryLexer.lexText};lunr.QueryLexer.lexEOS=function(lexer){if(lexer.width()>0){lexer.emit(lunr.QueryLexer.TERM)}};lunr.QueryLexer.termSeparator=lunr.tokenizer.separator;lunr.QueryLexer.lexText=function(lexer){while(true){var char=lexer.next();if(char==lunr.QueryLexer.EOS){return lunr.QueryLexer.lexEOS}if(char.charCodeAt(0)==92){lexer.escapeCharacter();continue}if(char==":"){return lunr.QueryLexer.lexField}if(char=="~"){lexer.backup();if(lexer.width()>0){lexer.emit(lunr.QueryLexer.TERM)}return lunr.QueryLexer.lexEditDistance}if(char=="^"){lexer.backup();if(lexer.width()>0){lexer.emit(lunr.QueryLexer.TERM)}return lunr.QueryLexer.lexBoost}if(char.match(lunr.QueryLexer.termSeparator)){return lunr.QueryLexer.lexTerm}}};lunr.QueryParser=function(str,query){this.lexer=new lunr.QueryLexer(str);this.query=query;this.currentClause={};this.lexemeIdx=0};lunr.QueryParser.prototype.parse=function(){this.lexer.run();this.lexemes=this.lexer.lexemes;var state=lunr.QueryParser.parseFieldOrTerm;while(state){state=state(this)}return this.query};lunr.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]};lunr.QueryParser.prototype.consumeLexeme=function(){var lexeme=this.peekLexeme();this.lexemeIdx+=1;return lexeme};lunr.QueryParser.prototype.nextClause=function(){var completedClause=this.currentClause;this.query.clause(completedClause);this.currentClause={}};lunr.QueryParser.parseFieldOrTerm=function(parser){var lexeme=parser.peekLexeme();if(lexeme==undefined){return}switch(lexeme.type){case lunr.QueryLexer.FIELD:return lunr.QueryParser.parseField;case lunr.QueryLexer.TERM:return lunr.QueryParser.parseTerm;default:var errorMessage="expected either a field or a term, found "+lexeme.type;if(lexeme.str.length>=1){errorMessage+=" with value '"+lexeme.str+"'"}throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}};lunr.QueryParser.parseField=function(parser){var lexeme=parser.consumeLexeme();if(lexeme==undefined){return}if(parser.query.allFields.indexOf(lexeme.str)==-1){var possibleFields=parser.query.allFields.map((function(f){return"'"+f+"'"})).join(", "),errorMessage="unrecognised field '"+lexeme.str+"', possible fields: "+possibleFields;throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}parser.currentClause.fields=[lexeme.str];var nextLexeme=parser.peekLexeme();if(nextLexeme==undefined){var errorMessage="expecting term, found nothing";throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}switch(nextLexeme.type){case lunr.QueryLexer.TERM:return lunr.QueryParser.parseTerm;default:var errorMessage="expecting term, found '"+nextLexeme.type+"'";throw new lunr.QueryParseError(errorMessage,nextLexeme.start,nextLexeme.end)}};lunr.QueryParser.parseTerm=function(parser){var lexeme=parser.consumeLexeme();if(lexeme==undefined){return}parser.currentClause.term=lexeme.str.toLowerCase();if(lexeme.str.indexOf("*")!=-1){parser.currentClause.usePipeline=false}var nextLexeme=parser.peekLexeme();if(nextLexeme==undefined){parser.nextClause();return}switch(nextLexeme.type){case lunr.QueryLexer.TERM:parser.nextClause();return lunr.QueryParser.parseTerm;case lunr.QueryLexer.FIELD:parser.nextClause();return lunr.QueryParser.parseField;case lunr.QueryLexer.EDIT_DISTANCE:return lunr.QueryParser.parseEditDistance;case lunr.QueryLexer.BOOST:return lunr.QueryParser.parseBoost;default:var errorMessage="Unexpected lexeme type '"+nextLexeme.type+"'";throw new lunr.QueryParseError(errorMessage,nextLexeme.start,nextLexeme.end)}};lunr.QueryParser.parseEditDistance=function(parser){var lexeme=parser.consumeLexeme();if(lexeme==undefined){return}var editDistance=parseInt(lexeme.str,10);if(isNaN(editDistance)){var errorMessage="edit distance must be numeric";throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}parser.currentClause.editDistance=editDistance;var nextLexeme=parser.peekLexeme();if(nextLexeme==undefined){parser.nextClause();return}switch(nextLexeme.type){case lunr.QueryLexer.TERM:parser.nextClause();return lunr.QueryParser.parseTerm;case lunr.QueryLexer.FIELD:parser.nextClause();return lunr.QueryParser.parseField;case lunr.QueryLexer.EDIT_DISTANCE:return lunr.QueryParser.parseEditDistance;case lunr.QueryLexer.BOOST:return lunr.QueryParser.parseBoost;default:var errorMessage="Unexpected lexeme type '"+nextLexeme.type+"'";throw new lunr.QueryParseError(errorMessage,nextLexeme.start,nextLexeme.end)}};lunr.QueryParser.parseBoost=function(parser){var lexeme=parser.consumeLexeme();if(lexeme==undefined){return}var boost=parseInt(lexeme.str,10);if(isNaN(boost)){var errorMessage="boost must be numeric";throw new lunr.QueryParseError(errorMessage,lexeme.start,lexeme.end)}parser.currentClause.boost=boost;var nextLexeme=parser.peekLexeme();if(nextLexeme==undefined){parser.nextClause();return}switch(nextLexeme.type){case lunr.QueryLexer.TERM:parser.nextClause();return lunr.QueryParser.parseTerm;case lunr.QueryLexer.FIELD:parser.nextClause();return lunr.QueryParser.parseField;case lunr.QueryLexer.EDIT_DISTANCE:return lunr.QueryParser.parseEditDistance;case lunr.QueryLexer.BOOST:return lunr.QueryParser.parseBoost;default:var errorMessage="Unexpected lexeme type '"+nextLexeme.type+"'";throw new lunr.QueryParseError(errorMessage,nextLexeme.start,nextLexeme.end)}};(function(root,factory){if(typeof define==="function"&&define.amd){define(factory)}else if(typeof exports==="object"){module.exports=factory()}else{root.lunr=factory()}})(this,(function(){return lunr}))})();
```
|
/content/code_sandbox/docs/styles/lunr.min.js
|
javascript
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 9,162
|
```javascript
$(function () {
var active = 'active';
var expanded = 'in';
var collapsed = 'collapsed';
var filtered = 'filtered';
var show = 'show';
var hide = 'hide';
var util = new utility();
workAroundFixedHeaderForAnchors();
highlight();
enableSearch();
renderTables();
renderAlerts();
renderLinks();
renderNavbar();
renderSidebar();
renderAffix();
renderFooter();
renderLogo();
breakText();
renderTabs();
window.refresh = function (article) {
// Update markup result
if (typeof article == 'undefined' || typeof article.content == 'undefined')
console.error("Null Argument");
$("article.content").html(article.content);
highlight();
renderTables();
renderAlerts();
renderAffix();
renderTabs();
}
// Add this event listener when needed
// window.addEventListener('content-update', contentUpdate);
function breakText() {
$(".xref").addClass("text-break");
var texts = $(".text-break");
texts.each(function () {
$(this).breakWord();
});
}
// Styling for tables in conceptual documents using Bootstrap.
// See path_to_url#tables
function renderTables() {
$('table').addClass('table table-bordered table-striped table-condensed').wrap('<div class=\"table-responsive\"></div>');
}
// Styling for alerts.
function renderAlerts() {
$('.NOTE, .TIP').addClass('alert alert-info');
$('.WARNING').addClass('alert alert-warning');
$('.IMPORTANT, .CAUTION').addClass('alert alert-danger');
}
// Enable anchors for headings.
(function () {
anchors.options = {
placement: 'left',
visible: 'hover'
};
anchors.add('article h2:not(.no-anchor), article h3:not(.no-anchor), article h4:not(.no-anchor)');
})();
// Open links to different host in a new window.
function renderLinks() {
if ($("meta[property='docfx:newtab']").attr("content") === "true") {
$(document.links).filter(function () {
return this.hostname !== window.location.hostname;
}).attr('target', '_blank');
}
}
// Enable highlight.js
function highlight() {
$('pre code').each(function (i, block) {
hljs.highlightBlock(block);
});
$('pre code[highlight-lines]').each(function (i, block) {
if (block.innerHTML === "") return;
var lines = block.innerHTML.split('\n');
queryString = block.getAttribute('highlight-lines');
if (!queryString) return;
var ranges = queryString.split(',');
for (var j = 0, range; range = ranges[j++];) {
var found = range.match(/^(\d+)\-(\d+)?$/);
if (found) {
// consider region as `{startlinenumber}-{endlinenumber}`, in which {endlinenumber} is optional
var start = +found[1];
var end = +found[2];
if (isNaN(end) || end > lines.length) {
end = lines.length;
}
} else {
// consider region as a sigine line number
if (isNaN(range)) continue;
var start = +range;
var end = start;
}
if (start <= 0 || end <= 0 || start > end || start > lines.length) {
// skip current region if invalid
continue;
}
lines[start - 1] = '<span class="line-highlight">' + lines[start - 1];
lines[end - 1] = lines[end - 1] + '</span>';
}
block.innerHTML = lines.join('\n');
});
}
// Support full-text-search
function enableSearch() {
var query;
var relHref = $("meta[property='docfx\\:rel']").attr("content");
if (typeof relHref === 'undefined') {
return;
}
try {
var worker = new Worker(relHref + 'styles/search-worker.js');
if (!worker && !window.worker) {
localSearch();
} else {
webWorkerSearch();
}
renderSearchBox();
highlightKeywords();
addSearchEvent();
} catch (e) {
console.error(e);
}
//Adjust the position of search box in navbar
function renderSearchBox() {
autoCollapse();
$(window).on('resize', autoCollapse);
$(document).on('click', '.navbar-collapse.in', function (e) {
if ($(e.target).is('a')) {
$(this).collapse('hide');
}
});
function autoCollapse() {
var navbar = $('#autocollapse');
if (navbar.height() === null) {
setTimeout(autoCollapse, 300);
}
navbar.removeClass(collapsed);
if (navbar.height() > 60) {
navbar.addClass(collapsed);
}
}
}
// Search factory
function localSearch() {
console.log("using local search");
var lunrIndex = lunr(function () {
this.ref('href');
this.field('title', { boost: 50 });
this.field('keywords', { boost: 20 });
});
lunr.tokenizer.seperator = /[\s\-\.]+/;
var searchData = {};
var searchDataRequest = new XMLHttpRequest();
var indexPath = relHref + "index.json";
if (indexPath) {
searchDataRequest.open('GET', indexPath);
searchDataRequest.onload = function () {
if (this.status != 200) {
return;
}
searchData = JSON.parse(this.responseText);
for (var prop in searchData) {
if (searchData.hasOwnProperty(prop)) {
lunrIndex.add(searchData[prop]);
}
}
}
searchDataRequest.send();
}
$("body").bind("queryReady", function () {
var hits = lunrIndex.search(query);
var results = [];
hits.forEach(function (hit) {
var item = searchData[hit.ref];
results.push({ 'href': item.href, 'title': item.title, 'keywords': item.keywords });
});
handleSearchResults(results);
});
}
function webWorkerSearch() {
console.log("using Web Worker");
var indexReady = $.Deferred();
worker.onmessage = function (oEvent) {
switch (oEvent.data.e) {
case 'index-ready':
indexReady.resolve();
break;
case 'query-ready':
var hits = oEvent.data.d;
handleSearchResults(hits);
break;
}
}
indexReady.promise().done(function () {
$("body").bind("queryReady", function () {
worker.postMessage({ q: query });
});
if (query && (query.length >= 3)) {
worker.postMessage({ q: query });
}
});
}
// Highlight the searching keywords
function highlightKeywords() {
var q = url('?q');
if (q) {
var keywords = q.split("%20");
keywords.forEach(function (keyword) {
if (keyword !== "") {
$('.data-searchable *').mark(keyword);
$('article *').mark(keyword);
}
});
}
}
function addSearchEvent() {
$('body').bind("searchEvent", function () {
$('#search-query').keypress(function (e) {
return e.which !== 13;
});
$('#search-query').keyup(function () {
query = $(this).val();
if (query.length < 3) {
flipContents("show");
} else {
flipContents("hide");
$("body").trigger("queryReady");
$('#search-results>.search-list>span').text('"' + query + '"');
}
}).off("keydown");
});
}
function flipContents(action) {
if (action === "show") {
$('.hide-when-search').show();
$('#search-results').hide();
} else {
$('.hide-when-search').hide();
$('#search-results').show();
}
}
function relativeUrlToAbsoluteUrl(currentUrl, relativeUrl) {
var currentItems = currentUrl.split(/\/+/);
var relativeItems = relativeUrl.split(/\/+/);
var depth = currentItems.length - 1;
var items = [];
for (var i = 0; i < relativeItems.length; i++) {
if (relativeItems[i] === '..') {
depth--;
} else if (relativeItems[i] !== '.') {
items.push(relativeItems[i]);
}
}
return currentItems.slice(0, depth).concat(items).join('/');
}
function extractContentBrief(content) {
var briefOffset = 512;
var words = query.split(/\s+/g);
var queryIndex = content.indexOf(words[0]);
var briefContent;
if (queryIndex > briefOffset) {
return "..." + content.slice(queryIndex - briefOffset, queryIndex + briefOffset) + "...";
} else if (queryIndex <= briefOffset) {
return content.slice(0, queryIndex + briefOffset) + "...";
}
}
function handleSearchResults(hits) {
var numPerPage = 10;
var pagination = $('#pagination');
pagination.empty();
pagination.removeData("twbs-pagination");
if (hits.length === 0) {
$('#search-results>.sr-items').html('<p>No results found</p>');
} else {
pagination.twbsPagination({
first: pagination.data('first'),
prev: pagination.data('prev'),
next: pagination.data('next'),
last: pagination.data('last'),
totalPages: Math.ceil(hits.length / numPerPage),
visiblePages: 5,
onPageClick: function (event, page) {
var start = (page - 1) * numPerPage;
var curHits = hits.slice(start, start + numPerPage);
$('#search-results>.sr-items').empty().append(
curHits.map(function (hit) {
var currentUrl = window.location.href;
var itemRawHref = relativeUrlToAbsoluteUrl(currentUrl, relHref + hit.href);
var itemHref = relHref + hit.href + "?q=" + query;
var itemTitle = hit.title;
var itemBrief = extractContentBrief(hit.keywords);
var itemNode = $('<div>').attr('class', 'sr-item');
var itemTitleNode = $('<div>').attr('class', 'item-title').append($('<a>').attr('href', itemHref).attr("target", "_blank").attr("rel", "noopener noreferrer").text(itemTitle));
var itemHrefNode = $('<div>').attr('class', 'item-href').text(itemRawHref);
var itemBriefNode = $('<div>').attr('class', 'item-brief').text(itemBrief);
itemNode.append(itemTitleNode).append(itemHrefNode).append(itemBriefNode);
return itemNode;
})
);
query.split(/\s+/).forEach(function (word) {
if (word !== '') {
$('#search-results>.sr-items *').mark(word);
}
});
}
});
}
}
};
// Update href in navbar
function renderNavbar() {
var navbar = $('#navbar ul')[0];
if (typeof (navbar) === 'undefined') {
loadNavbar();
} else {
$('#navbar ul a.active').parents('li').addClass(active);
renderBreadcrumb();
showSearch();
}
function showSearch() {
if ($('#search-results').length !== 0) {
$('#search').show();
$('body').trigger("searchEvent");
}
}
function loadNavbar() {
var navbarPath = $("meta[property='docfx\\:navrel']").attr("content");
if (!navbarPath) {
return;
}
navbarPath = navbarPath.replace(/\\/g, '/');
var tocPath = $("meta[property='docfx\\:tocrel']").attr("content") || '';
if (tocPath) tocPath = tocPath.replace(/\\/g, '/');
$.get(navbarPath, function (data) {
$(data).find("#toc>ul").appendTo("#navbar");
showSearch();
var index = navbarPath.lastIndexOf('/');
var navrel = '';
if (index > -1) {
navrel = navbarPath.substr(0, index + 1);
}
$('#navbar>ul').addClass('navbar-nav');
var currentAbsPath = util.getCurrentWindowAbsolutePath();
// set active item
$('#navbar').find('a[href]').each(function (i, e) {
var href = $(e).attr("href");
if (util.isRelativePath(href)) {
href = navrel + href;
$(e).attr("href", href);
var isActive = false;
var originalHref = e.name;
if (originalHref) {
originalHref = navrel + originalHref;
if (util.getDirectory(util.getAbsolutePath(originalHref)) === util.getDirectory(util.getAbsolutePath(tocPath))) {
isActive = true;
}
} else {
if (util.getAbsolutePath(href) === currentAbsPath) {
var dropdown = $(e).attr('data-toggle') == "dropdown"
if (!dropdown) {
isActive = true;
}
}
}
if (isActive) {
$(e).addClass(active);
}
}
});
renderNavbar();
});
}
}
function renderSidebar() {
var sidetoc = $('#sidetoggle .sidetoc')[0];
if (typeof (sidetoc) === 'undefined') {
loadToc();
} else {
registerTocEvents();
if ($('footer').is(':visible')) {
$('.sidetoc').addClass('shiftup');
}
// Scroll to active item
var top = 0;
$('#toc a.active').parents('li').each(function (i, e) {
$(e).addClass(active).addClass(expanded);
$(e).children('a').addClass(active);
})
$('#toc a.active').parents('li').each(function (i, e) {
top += $(e).position().top;
})
$('.sidetoc').scrollTop(top - 50);
if ($('footer').is(':visible')) {
$('.sidetoc').addClass('shiftup');
}
renderBreadcrumb();
}
function registerTocEvents() {
var tocFilterInput = $('#toc_filter_input');
var tocFilterClearButton = $('#toc_filter_clear');
$('.toc .nav > li > .expand-stub').click(function (e) {
$(e.target).parent().toggleClass(expanded);
});
$('.toc .nav > li > .expand-stub + a:not([href])').click(function (e) {
$(e.target).parent().toggleClass(expanded);
});
tocFilterInput.on('input', function (e) {
var val = this.value;
//Save filter string to local session storage
if (typeof(Storage) !== "undefined") {
try {
sessionStorage.filterString = val;
}
catch(e)
{}
}
if (val === '') {
// Clear 'filtered' class
$('#toc li').removeClass(filtered).removeClass(hide);
tocFilterClearButton.fadeOut();
return;
}
tocFilterClearButton.fadeIn();
// set all parent nodes status
$('#toc li>a').filter(function (i, e) {
return $(e).siblings().length > 0
}).each(function (i, anchor) {
var parent = $(anchor).parent();
parent.addClass(hide);
parent.removeClass(show);
parent.removeClass(filtered);
})
// Get leaf nodes
$('#toc li>a').filter(function (i, e) {
return $(e).siblings().length === 0
}).each(function (i, anchor) {
var text = $(anchor).attr('title');
var parent = $(anchor).parent();
var parentNodes = parent.parents('ul>li');
for (var i = 0; i < parentNodes.length; i++) {
var parentText = $(parentNodes[i]).children('a').attr('title');
if (parentText) text = parentText + '.' + text;
};
if (filterNavItem(text, val)) {
parent.addClass(show);
parent.removeClass(hide);
} else {
parent.addClass(hide);
parent.removeClass(show);
}
});
$('#toc li>a').filter(function (i, e) {
return $(e).siblings().length > 0
}).each(function (i, anchor) {
var parent = $(anchor).parent();
if (parent.find('li.show').length > 0) {
parent.addClass(show);
parent.addClass(filtered);
parent.removeClass(hide);
} else {
parent.addClass(hide);
parent.removeClass(show);
parent.removeClass(filtered);
}
})
function filterNavItem(name, text) {
if (!text) return true;
if (name && name.toLowerCase().indexOf(text.toLowerCase()) > -1) return true;
return false;
}
});
// toc filter clear button
tocFilterClearButton.hide();
tocFilterClearButton.on("click", function(e){
tocFilterInput.val("");
tocFilterInput.trigger('input');
if (typeof(Storage) !== "undefined") {
try {
sessionStorage.filterString = "";
}
catch(e)
{}
}
});
//Set toc filter from local session storage on page load
if (typeof(Storage) !== "undefined") {
try {
tocFilterInput.val(sessionStorage.filterString);
tocFilterInput.trigger('input');
}
catch(e)
{}
}
}
function loadToc() {
var tocPath = $("meta[property='docfx\\:tocrel']").attr("content");
if (!tocPath) {
return;
}
tocPath = tocPath.replace(/\\/g, '/');
$('#sidetoc').load(tocPath + " #sidetoggle > div", function () {
var index = tocPath.lastIndexOf('/');
var tocrel = '';
if (index > -1) {
tocrel = tocPath.substr(0, index + 1);
}
var currentHref = util.getCurrentWindowAbsolutePath();
if(!currentHref.endsWith('.html')) {
currentHref += '.html';
}
$('#sidetoc').find('a[href]').each(function (i, e) {
var href = $(e).attr("href");
if (util.isRelativePath(href)) {
href = tocrel + href;
$(e).attr("href", href);
}
if (util.getAbsolutePath(e.href) === currentHref) {
$(e).addClass(active);
}
$(e).breakWord();
});
renderSidebar();
});
}
}
function renderBreadcrumb() {
var breadcrumb = [];
$('#navbar a.active').each(function (i, e) {
breadcrumb.push({
href: e.href,
name: e.innerHTML
});
})
$('#toc a.active').each(function (i, e) {
breadcrumb.push({
href: e.href,
name: e.innerHTML
});
})
var html = util.formList(breadcrumb, 'breadcrumb');
$('#breadcrumb').html(html);
}
//Setup Affix
function renderAffix() {
var hierarchy = getHierarchy();
if (!hierarchy || hierarchy.length <= 0) {
$("#affix").hide();
}
else {
var html = util.formList(hierarchy, ['nav', 'bs-docs-sidenav']);
$("#affix>div").empty().append(html);
if ($('footer').is(':visible')) {
$(".sideaffix").css("bottom", "70px");
}
$('#affix a').click(function(e) {
var scrollspy = $('[data-spy="scroll"]').data()['bs.scrollspy'];
var target = e.target.hash;
if (scrollspy && target) {
scrollspy.activate(target);
}
});
}
function getHierarchy() {
// supported headers are h1, h2, h3, and h4
var $headers = $($.map(['h1', 'h2', 'h3', 'h4'], function (h) { return ".article article " + h; }).join(", "));
// a stack of hierarchy items that are currently being built
var stack = [];
$headers.each(function (i, e) {
if (!e.id) {
return;
}
var item = {
name: htmlEncode($(e).text()),
href: "#" + e.id,
items: []
};
if (!stack.length) {
stack.push({ type: e.tagName, siblings: [item] });
return;
}
var frame = stack[stack.length - 1];
if (e.tagName === frame.type) {
frame.siblings.push(item);
} else if (e.tagName[1] > frame.type[1]) {
// we are looking at a child of the last element of frame.siblings.
// push a frame onto the stack. After we've finished building this item's children,
// we'll attach it as a child of the last element
stack.push({ type: e.tagName, siblings: [item] });
} else { // e.tagName[1] < frame.type[1]
// we are looking at a sibling of an ancestor of the current item.
// pop frames from the stack, building items as we go, until we reach the correct level at which to attach this item.
while (e.tagName[1] < stack[stack.length - 1].type[1]) {
buildParent();
}
if (e.tagName === stack[stack.length - 1].type) {
stack[stack.length - 1].siblings.push(item);
} else {
stack.push({ type: e.tagName, siblings: [item] });
}
}
});
while (stack.length > 1) {
buildParent();
}
function buildParent() {
var childrenToAttach = stack.pop();
var parentFrame = stack[stack.length - 1];
var parent = parentFrame.siblings[parentFrame.siblings.length - 1];
$.each(childrenToAttach.siblings, function (i, child) {
parent.items.push(child);
});
}
if (stack.length > 0) {
var topLevel = stack.pop().siblings;
if (topLevel.length === 1) { // if there's only one topmost header, dump it
return topLevel[0].items;
}
return topLevel;
}
return undefined;
}
function htmlEncode(str) {
if (!str) return str;
return str
.replace(/&/g, '&')
.replace(/"/g, '"')
.replace(/'/g, ''')
.replace(/</g, '<')
.replace(/>/g, '>');
}
function htmlDecode(value) {
if (!str) return str;
return value
.replace(/"/g, '"')
.replace(/'/g, "'")
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/&/g, '&');
}
function cssEscape(str) {
// see: path_to_url#answer-2837646
if (!str) return str;
return str
.replace(/[!"#$%&'()*+,.\/:;<=>?@[\\\]^`{|}~]/g, "\\$&");
}
}
// Show footer
function renderFooter() {
initFooter();
$(window).on("scroll", showFooterCore);
function initFooter() {
if (needFooter()) {
shiftUpBottomCss();
$("footer").show();
} else {
resetBottomCss();
$("footer").hide();
}
}
function showFooterCore() {
if (needFooter()) {
shiftUpBottomCss();
$("footer").fadeIn();
} else {
resetBottomCss();
$("footer").fadeOut();
}
}
function needFooter() {
var scrollHeight = $(document).height();
var scrollPosition = $(window).height() + $(window).scrollTop();
return (scrollHeight - scrollPosition) < 1;
}
function resetBottomCss() {
$(".sidetoc").removeClass("shiftup");
$(".sideaffix").removeClass("shiftup");
}
function shiftUpBottomCss() {
$(".sidetoc").addClass("shiftup");
$(".sideaffix").addClass("shiftup");
}
}
function renderLogo() {
// For LOGO SVG
// Replace SVG with inline SVG
// path_to_url
jQuery('img.svg').each(function () {
var $img = jQuery(this);
var imgID = $img.attr('id');
var imgClass = $img.attr('class');
var imgURL = $img.attr('src');
jQuery.get(imgURL, function (data) {
// Get the SVG tag, ignore the rest
var $svg = jQuery(data).find('svg');
// Add replaced image's ID to the new SVG
if (typeof imgID !== 'undefined') {
$svg = $svg.attr('id', imgID);
}
// Add replaced image's classes to the new SVG
if (typeof imgClass !== 'undefined') {
$svg = $svg.attr('class', imgClass + ' replaced-svg');
}
// Remove any invalid XML tags as per path_to_url
$svg = $svg.removeAttr('xmlns:a');
// Replace image with new SVG
$img.replaceWith($svg);
}, 'xml');
});
}
function renderTabs() {
var contentAttrs = {
id: 'data-bi-id',
name: 'data-bi-name',
type: 'data-bi-type'
};
var Tab = (function () {
function Tab(li, a, section) {
this.li = li;
this.a = a;
this.section = section;
}
Object.defineProperty(Tab.prototype, "tabIds", {
get: function () { return this.a.getAttribute('data-tab').split(' '); },
enumerable: true,
configurable: true
});
Object.defineProperty(Tab.prototype, "condition", {
get: function () { return this.a.getAttribute('data-condition'); },
enumerable: true,
configurable: true
});
Object.defineProperty(Tab.prototype, "visible", {
get: function () { return !this.li.hasAttribute('hidden'); },
set: function (value) {
if (value) {
this.li.removeAttribute('hidden');
this.li.removeAttribute('aria-hidden');
}
else {
this.li.setAttribute('hidden', 'hidden');
this.li.setAttribute('aria-hidden', 'true');
}
},
enumerable: true,
configurable: true
});
Object.defineProperty(Tab.prototype, "selected", {
get: function () { return !this.section.hasAttribute('hidden'); },
set: function (value) {
if (value) {
this.a.setAttribute('aria-selected', 'true');
this.a.tabIndex = 0;
this.section.removeAttribute('hidden');
this.section.removeAttribute('aria-hidden');
}
else {
this.a.setAttribute('aria-selected', 'false');
this.a.tabIndex = -1;
this.section.setAttribute('hidden', 'hidden');
this.section.setAttribute('aria-hidden', 'true');
}
},
enumerable: true,
configurable: true
});
Tab.prototype.focus = function () {
this.a.focus();
};
return Tab;
}());
initTabs(document.body);
function initTabs(container) {
var queryStringTabs = readTabsQueryStringParam();
var elements = container.querySelectorAll('.tabGroup');
var state = { groups: [], selectedTabs: [] };
for (var i = 0; i < elements.length; i++) {
var group = initTabGroup(elements.item(i));
if (!group.independent) {
updateVisibilityAndSelection(group, state);
state.groups.push(group);
}
}
container.addEventListener('click', function (event) { return handleClick(event, state); });
if (state.groups.length === 0) {
return state;
}
selectTabs(queryStringTabs, container);
updateTabsQueryStringParam(state);
notifyContentUpdated();
return state;
}
function initTabGroup(element) {
var group = {
independent: element.hasAttribute('data-tab-group-independent'),
tabs: []
};
var li = element.firstElementChild.firstElementChild;
while (li) {
var a = li.firstElementChild;
a.setAttribute(contentAttrs.name, 'tab');
var dataTab = a.getAttribute('data-tab').replace(/\+/g, ' ');
a.setAttribute('data-tab', dataTab);
var section = element.querySelector("[id=\"" + a.getAttribute('aria-controls') + "\"]");
var tab = new Tab(li, a, section);
group.tabs.push(tab);
li = li.nextElementSibling;
}
element.setAttribute(contentAttrs.name, 'tab-group');
element.tabGroup = group;
return group;
}
function updateVisibilityAndSelection(group, state) {
var anySelected = false;
var firstVisibleTab;
for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) {
var tab = _a[_i];
tab.visible = tab.condition === null || state.selectedTabs.indexOf(tab.condition) !== -1;
if (tab.visible) {
if (!firstVisibleTab) {
firstVisibleTab = tab;
}
}
tab.selected = tab.visible && arraysIntersect(state.selectedTabs, tab.tabIds);
anySelected = anySelected || tab.selected;
}
if (!anySelected) {
for (var _b = 0, _c = group.tabs; _b < _c.length; _b++) {
var tabIds = _c[_b].tabIds;
for (var _d = 0, tabIds_1 = tabIds; _d < tabIds_1.length; _d++) {
var tabId = tabIds_1[_d];
var index = state.selectedTabs.indexOf(tabId);
if (index === -1) {
continue;
}
state.selectedTabs.splice(index, 1);
}
}
var tab = firstVisibleTab;
tab.selected = true;
state.selectedTabs.push(tab.tabIds[0]);
}
}
function getTabInfoFromEvent(event) {
if (!(event.target instanceof HTMLElement)) {
return null;
}
var anchor = event.target.closest('a[data-tab]');
if (anchor === null) {
return null;
}
var tabIds = anchor.getAttribute('data-tab').split(' ');
var group = anchor.parentElement.parentElement.parentElement.tabGroup;
if (group === undefined) {
return null;
}
return { tabIds: tabIds, group: group, anchor: anchor };
}
function handleClick(event, state) {
var info = getTabInfoFromEvent(event);
if (info === null) {
return;
}
event.preventDefault();
info.anchor.href = 'javascript:';
setTimeout(function () { return info.anchor.href = '#' + info.anchor.getAttribute('aria-controls'); });
var tabIds = info.tabIds, group = info.group;
var originalTop = info.anchor.getBoundingClientRect().top;
if (group.independent) {
for (var _i = 0, _a = group.tabs; _i < _a.length; _i++) {
var tab = _a[_i];
tab.selected = arraysIntersect(tab.tabIds, tabIds);
}
}
else {
if (arraysIntersect(state.selectedTabs, tabIds)) {
return;
}
var previousTabId = group.tabs.filter(function (t) { return t.selected; })[0].tabIds[0];
state.selectedTabs.splice(state.selectedTabs.indexOf(previousTabId), 1, tabIds[0]);
for (var _b = 0, _c = state.groups; _b < _c.length; _b++) {
var group_1 = _c[_b];
updateVisibilityAndSelection(group_1, state);
}
updateTabsQueryStringParam(state);
}
notifyContentUpdated();
var top = info.anchor.getBoundingClientRect().top;
if (top !== originalTop && event instanceof MouseEvent) {
window.scrollTo(0, window.pageYOffset + top - originalTop);
}
}
function selectTabs(tabIds) {
for (var _i = 0, tabIds_1 = tabIds; _i < tabIds_1.length; _i++) {
var tabId = tabIds_1[_i];
var a = document.querySelector(".tabGroup > ul > li > a[data-tab=\"" + tabId + "\"]:not([hidden])");
if (a === null) {
return;
}
a.dispatchEvent(new CustomEvent('click', { bubbles: true }));
}
}
function readTabsQueryStringParam() {
var qs = parseQueryString(window.location.search);
var t = qs.tabs;
if (t === undefined || t === '') {
return [];
}
return t.split(',');
}
function updateTabsQueryStringParam(state) {
var qs = parseQueryString(window.location.search);
qs.tabs = state.selectedTabs.join();
var url = location.protocol + "//" + location.host + location.pathname + "?" + toQueryString(qs) + location.hash;
if (location.href === url) {
return;
}
history.replaceState({}, document.title, url);
}
function toQueryString(args) {
var parts = [];
for (var name_1 in args) {
if (args.hasOwnProperty(name_1) && args[name_1] !== '' && args[name_1] !== null && args[name_1] !== undefined) {
parts.push(encodeURIComponent(name_1) + '=' + encodeURIComponent(args[name_1]));
}
}
return parts.join('&');
}
function parseQueryString(queryString) {
var match;
var pl = /\+/g;
var search = /([^&=]+)=?([^&]*)/g;
var decode = function (s) { return decodeURIComponent(s.replace(pl, ' ')); };
if (queryString === undefined) {
queryString = '';
}
queryString = queryString.substring(1);
var urlParams = {};
while (match = search.exec(queryString)) {
urlParams[decode(match[1])] = decode(match[2]);
}
return urlParams;
}
function arraysIntersect(a, b) {
for (var _i = 0, a_1 = a; _i < a_1.length; _i++) {
var itemA = a_1[_i];
for (var _a = 0, b_1 = b; _a < b_1.length; _a++) {
var itemB = b_1[_a];
if (itemA === itemB) {
return true;
}
}
}
return false;
}
function notifyContentUpdated() {
// Dispatch this event when needed
// window.dispatchEvent(new CustomEvent('content-update'));
}
}
function utility() {
this.getAbsolutePath = getAbsolutePath;
this.isRelativePath = isRelativePath;
this.isAbsolutePath = isAbsolutePath;
this.getCurrentWindowAbsolutePath = getCurrentWindowAbsolutePath;
this.getDirectory = getDirectory;
this.formList = formList;
function getAbsolutePath(href) {
if (isAbsolutePath(href)) return href;
var currentAbsPath = getCurrentWindowAbsolutePath();
var stack = currentAbsPath.split("/");
stack.pop();
var parts = href.split("/");
for (var i=0; i< parts.length; i++) {
if (parts[i] == ".") continue;
if (parts[i] == ".." && stack.length > 0)
stack.pop();
else
stack.push(parts[i]);
}
var p = stack.join("/");
return p;
}
function isRelativePath(href) {
if (href === undefined || href === '' || href[0] === '/') {
return false;
}
return !isAbsolutePath(href);
}
function isAbsolutePath(href) {
return (/^(?:[a-z]+:)?\/\//i).test(href);
}
function getCurrentWindowAbsolutePath() {
return window.location.origin + window.location.pathname;
}
function getDirectory(href) {
if (!href) return '';
var index = href.lastIndexOf('/');
if (index == -1) return '';
if (index > -1) {
return href.substr(0, index);
}
}
function formList(item, classes) {
var level = 1;
var model = {
items: item
};
var cls = [].concat(classes).join(" ");
return getList(model, cls);
function getList(model, cls) {
if (!model || !model.items) return null;
var l = model.items.length;
if (l === 0) return null;
var html = '<ul class="level' + level + ' ' + (cls || '') + '">';
level++;
for (var i = 0; i < l; i++) {
var item = model.items[i];
var href = item.href;
var name = item.name;
if (!name) continue;
html += href ? '<li><a href="' + href + '">' + name + '</a>' : '<li>' + name;
html += getList(item, cls) || '';
html += '</li>';
}
html += '</ul>';
return html;
}
}
/**
* Add <wbr> into long word.
* @param {String} text - The word to break. It should be in plain text without HTML tags.
*/
function breakPlainText(text) {
if (!text) return text;
return text.replace(/([a-z])([A-Z])|(\.)(\w)/g, '$1$3<wbr>$2$4')
}
/**
* Add <wbr> into long word. The jQuery element should contain no html tags.
* If the jQuery element contains tags, this function will not change the element.
*/
$.fn.breakWord = function () {
if (this.html() == this.text()) {
this.html(function (index, text) {
return breakPlainText(text);
})
}
return this;
}
}
// adjusted from path_to_url
function workAroundFixedHeaderForAnchors() {
var HISTORY_SUPPORT = !!(history && history.pushState);
var ANCHOR_REGEX = /^#[^ ]+$/;
function getFixedOffset() {
return $('header').first().height();
}
/**
* If the provided href is an anchor which resolves to an element on the
* page, scroll to it.
* @param {String} href
* @return {Boolean} - Was the href an anchor.
*/
function scrollIfAnchor(href, pushToHistory) {
var match, rect, anchorOffset;
if (!ANCHOR_REGEX.test(href)) {
return false;
}
match = document.getElementById(href.slice(1));
if (match) {
rect = match.getBoundingClientRect();
anchorOffset = window.pageYOffset + rect.top - getFixedOffset();
window.scrollTo(window.pageXOffset, anchorOffset);
// Add the state to history as-per normal anchor links
if (HISTORY_SUPPORT && pushToHistory) {
history.pushState({}, document.title, location.pathname + href);
}
}
return !!match;
}
/**
* Attempt to scroll to the current location's hash.
*/
function scrollToCurrent() {
scrollIfAnchor(window.location.hash);
}
/**
* If the click event's target was an anchor, fix the scroll position.
*/
function delegateAnchors(e) {
var elem = e.target;
if (scrollIfAnchor(elem.getAttribute('href'), true)) {
e.preventDefault();
}
}
$(window).on('hashchange', scrollToCurrent);
$(window).on('load', function () {
// scroll to the anchor if present, offset by the header
scrollToCurrent();
});
$(document).ready(function () {
// Exclude tabbed content case
$('a:not([data-tab])').click(function (e) { delegateAnchors(e); });
});
}
});
```
|
/content/code_sandbox/docs/styles/docfx.js
|
javascript
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 8,798
|
```javascript
```
|
/content/code_sandbox/docs/styles/main.js
|
javascript
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1
|
```javascript
(function () {
importScripts('lunr.min.js');
var lunrIndex;
var stopWords = null;
var searchData = {};
lunr.tokenizer.separator = /[\s\-\.\(\)]+/;
var stopWordsRequest = new XMLHttpRequest();
stopWordsRequest.open('GET', '../search-stopwords.json');
stopWordsRequest.onload = function () {
if (this.status != 200) {
return;
}
stopWords = JSON.parse(this.responseText);
buildIndex();
}
stopWordsRequest.send();
var searchDataRequest = new XMLHttpRequest();
searchDataRequest.open('GET', '../index.json');
searchDataRequest.onload = function () {
if (this.status != 200) {
return;
}
searchData = JSON.parse(this.responseText);
buildIndex();
postMessage({ e: 'index-ready' });
}
searchDataRequest.send();
onmessage = function (oEvent) {
var q = oEvent.data.q;
var hits = lunrIndex.search(q);
var results = [];
hits.forEach(function (hit) {
var item = searchData[hit.ref];
results.push({ 'href': item.href, 'title': item.title, 'keywords': item.keywords });
});
postMessage({ e: 'query-ready', q: q, d: results });
}
function buildIndex() {
if (stopWords !== null && !isEmpty(searchData)) {
lunrIndex = lunr(function () {
this.pipeline.remove(lunr.stopWordFilter);
this.ref('href');
this.field('title', { boost: 50 });
this.field('keywords', { boost: 20 });
for (var prop in searchData) {
if (searchData.hasOwnProperty(prop)) {
this.add(searchData[prop]);
}
}
var docfxStopWordFilter = lunr.generateStopWordFilter(stopWords);
lunr.Pipeline.registerFunction(docfxStopWordFilter, 'docfxStopWordFilter');
this.pipeline.add(docfxStopWordFilter);
this.searchPipeline.add(docfxStopWordFilter);
});
}
}
function isEmpty(obj) {
if(!obj) return true;
for (var prop in obj) {
if (obj.hasOwnProperty(prop))
return false;
}
return true;
}
})();
```
|
/content/code_sandbox/docs/styles/search-worker.js
|
javascript
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 490
|
```css
html,
body {
font-family: 'Segoe UI', Tahoma, Helvetica, sans-serif;
height: 100%;
}
button,
a {
color: #337ab7;
cursor: pointer;
}
button:hover,
button:focus,
a:hover,
a:focus {
color: #23527c;
text-decoration: none;
}
a.disable,
a.disable:hover {
text-decoration: none;
cursor: default;
color: #000000;
}
h1, h2, h3, h4, h5, h6, .text-break {
word-wrap: break-word;
word-break: break-word;
}
h1 mark,
h2 mark,
h3 mark,
h4 mark,
h5 mark,
h6 mark {
padding: 0;
}
.inheritance .level0:before,
.inheritance .level1:before,
.inheritance .level2:before,
.inheritance .level3:before,
.inheritance .level4:before,
.inheritance .level5:before,
.inheritance .level6:before,
.inheritance .level7:before,
.inheritance .level8:before,
.inheritance .level9:before {
content: '';
margin-right: 5px;
}
.inheritance .level0 {
margin-left: 0em;
}
.inheritance .level1 {
margin-left: 1em;
}
.inheritance .level2 {
margin-left: 2em;
}
.inheritance .level3 {
margin-left: 3em;
}
.inheritance .level4 {
margin-left: 4em;
}
.inheritance .level5 {
margin-left: 5em;
}
.inheritance .level6 {
margin-left: 6em;
}
.inheritance .level7 {
margin-left: 7em;
}
.inheritance .level8 {
margin-left: 8em;
}
.inheritance .level9 {
margin-left: 9em;
}
.level0.summary {
margin: 2em 0 2em 0;
}
.level1.summary {
margin: 1em 0 1em 0;
}
span.parametername,
span.paramref,
span.typeparamref {
font-style: italic;
}
span.languagekeyword{
font-weight: bold;
}
svg:hover path {
fill: #ffffff;
}
.hljs {
display: inline;
background-color: inherit;
padding: 0;
}
/* additional spacing fixes */
.btn + .btn {
margin-left: 10px;
}
.btn.pull-right {
margin-left: 10px;
margin-top: 5px;
}
.table {
margin-bottom: 10px;
}
table p {
margin-bottom: 0;
}
table a {
display: inline-block;
}
/* Make hidden attribute compatible with old browser.*/
[hidden] {
display: none !important;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 15px;
margin-bottom: 10px;
font-weight: 400;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 10px;
margin-bottom: 5px;
}
.navbar {
margin-bottom: 0;
}
#wrapper {
min-height: 100%;
position: relative;
}
/* blends header footer and content together with gradient effect */
.grad-top {
/* For Safari 5.1 to 6.0 */
/* For Opera 11.1 to 12.0 */
/* For Firefox 3.6 to 15 */
background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
/* Standard syntax */
height: 5px;
}
.grad-bottom {
/* For Safari 5.1 to 6.0 */
/* For Opera 11.1 to 12.0 */
/* For Firefox 3.6 to 15 */
background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
/* Standard syntax */
height: 5px;
}
.divider {
margin: 0 5px;
color: #cccccc;
}
hr {
border-color: #cccccc;
}
header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
}
header .navbar {
border-width: 0 0 1px;
border-radius: 0;
}
.navbar-brand {
font-size: inherit;
padding: 0;
}
.navbar-collapse {
margin: 0 -15px;
}
.subnav {
min-height: 40px;
}
.inheritance h5, .inheritedMembers h5{
padding-bottom: 5px;
border-bottom: 1px solid #ccc;
}
article h1, article h2, article h3, article h4{
margin-top: 25px;
}
article h4{
border: 0;
font-weight: bold;
margin-top: 2em;
}
article span.small.pull-right{
margin-top: 20px;
}
article section {
margin-left: 1em;
}
/*.expand-all {
padding: 10px 0;
}*/
.breadcrumb {
margin: 0;
padding: 10px 0;
background-color: inherit;
white-space: nowrap;
}
.breadcrumb > li + li:before {
content: "\00a0/";
}
#autocollapse.collapsed .navbar-header {
float: none;
}
#autocollapse.collapsed .navbar-toggle {
display: block;
}
#autocollapse.collapsed .navbar-collapse {
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
#autocollapse.collapsed .navbar-collapse.collapse {
display: none !important;
}
#autocollapse.collapsed .navbar-nav {
float: none !important;
margin: 7.5px -15px;
}
#autocollapse.collapsed .navbar-nav > li {
float: none;
}
#autocollapse.collapsed .navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
}
#autocollapse.collapsed .collapse.in,
#autocollapse.collapsed .collapsing {
display: block !important;
}
#autocollapse.collapsed .collapse.in .navbar-right,
#autocollapse.collapsed .collapsing .navbar-right {
float: none !important;
}
#autocollapse .form-group {
width: 100%;
}
#autocollapse .form-control {
width: 100%;
}
#autocollapse .navbar-header {
margin-left: 0;
margin-right: 0;
}
#autocollapse .navbar-brand {
margin-left: 0;
}
.collapse.in,
.collapsing {
text-align: center;
}
.collapsing .navbar-form {
margin: 0 auto;
max-width: 400px;
padding: 10px 15px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}
.collapsed .collapse.in .navbar-form {
margin: 0 auto;
max-width: 400px;
padding: 10px 15px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}
.navbar .navbar-nav {
display: inline-block;
}
.docs-search {
background: white;
vertical-align: middle;
}
.docs-search > .search-query {
font-size: 14px;
border: 0;
width: 120%;
color: #555;
}
.docs-search > .search-query:focus {
outline: 0;
}
.search-results-frame {
clear: both;
display: table;
width: 100%;
}
.search-results.ng-hide {
display: none;
}
.search-results-container {
padding-bottom: 1em;
border-top: 1px solid #111;
background: rgba(25, 25, 25, 0.5);
}
.search-results-container .search-results-group {
padding-top: 50px !important;
padding: 10px;
}
.search-results-group-heading {
font-family: "Open Sans";
padding-left: 10px;
color: white;
}
.search-close {
position: absolute;
left: 50%;
margin-left: -100px;
color: white;
text-align: center;
padding: 5px;
background: #333;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
width: 200px;
box-shadow: 0 0 10px #111;
}
#search {
display: none;
}
/* Search results display*/
#search-results {
max-width: 960px !important;
margin-top: 120px;
margin-bottom: 115px;
margin-left: auto;
margin-right: auto;
line-height: 1.8;
display: none;
}
#search-results>.search-list {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
}
#search-results p {
text-align: center;
}
#search-results p .index-loading {
animation: index-loading 1.5s infinite linear;
-webkit-animation: index-loading 1.5s infinite linear;
-o-animation: index-loading 1.5s infinite linear;
font-size: 2.5rem;
}
@keyframes index-loading {
from { transform: scale(1) rotate(0deg);}
to { transform: scale(1) rotate(360deg);}
}
@-webkit-keyframes index-loading {
from { -webkit-transform: rotate(0deg);}
to { -webkit-transform: rotate(360deg);}
}
@-o-keyframes index-loading {
from { -o-transform: rotate(0deg);}
to { -o-transform: rotate(360deg);}
}
#search-results .sr-items {
font-size: 24px;
}
.sr-item {
margin-bottom: 25px;
}
.sr-item>.item-href {
font-size: 14px;
color: #093;
}
.sr-item>.item-brief {
font-size: 13px;
}
.pagination>li>a {
color: #47A7A0
}
.pagination>.active>a {
background-color: #47A7A0;
border-color: #47A7A0;
}
.fixed_header {
position: fixed;
width: 100%;
padding-bottom: 10px;
padding-top: 10px;
margin: 0px;
top: 0;
z-index: 9999;
left: 0;
}
.fixed_header+.toc{
margin-top: 50px;
margin-left: 0;
}
.sidenav, .fixed_header, .toc {
background-color: #f1f1f1;
}
.sidetoc {
position: fixed;
width: 260px;
top: 150px;
bottom: 0;
overflow-x: hidden;
overflow-y: auto;
background-color: #f1f1f1;
border-left: 1px solid #e7e7e7;
border-right: 1px solid #e7e7e7;
z-index: 1;
}
.sidetoc.shiftup {
bottom: 70px;
}
body .toc{
background-color: #f1f1f1;
overflow-x: hidden;
}
.sidetoggle.ng-hide {
display: block !important;
}
.sidetoc-expand > .caret {
margin-left: 0px;
margin-top: -2px;
}
.sidetoc-expand > .caret-side {
border-left: 4px solid;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
margin-left: 4px;
margin-top: -4px;
}
.sidetoc-heading {
font-weight: 500;
}
.toc {
margin: 0px 0 0 10px;
padding: 0 10px;
}
.expand-stub {
position: absolute;
left: -10px;
}
.toc .nav > li > a.sidetoc-expand {
position: absolute;
top: 0;
left: 0;
}
.toc .nav > li > a {
color: #666666;
margin-left: 5px;
display: block;
padding: 0;
}
.toc .nav > li > a:hover,
.toc .nav > li > a:focus {
color: #000000;
background: none;
text-decoration: inherit;
}
.toc .nav > li.active > a {
color: #337ab7;
}
.toc .nav > li.active > a:hover,
.toc .nav > li.active > a:focus {
color: #23527c;
}
.toc .nav > li> .expand-stub {
cursor: pointer;
}
.toc .nav > li.active > .expand-stub::before,
.toc .nav > li.in > .expand-stub::before,
.toc .nav > li.in.active > .expand-stub::before,
.toc .nav > li.filtered > .expand-stub::before {
content: "-";
}
.toc .nav > li > .expand-stub::before,
.toc .nav > li.active > .expand-stub::before {
content: "+";
}
.toc .nav > li.filtered > ul,
.toc .nav > li.in > ul {
display: block;
}
.toc .nav > li > ul {
display: none;
}
.toc ul{
font-size: 12px;
margin: 0 0 0 3px;
}
.toc .level1 > li {
font-weight: bold;
margin-top: 10px;
position: relative;
font-size: 16px;
}
.toc .level2 {
font-weight: normal;
margin: 5px 0 0 15px;
font-size: 14px;
}
.toc-toggle {
display: none;
margin: 0 15px 0px 15px;
}
.sidefilter {
position: fixed;
top: 90px;
width: 260px;
background-color: #f1f1f1;
padding: 15px;
border-left: 1px solid #e7e7e7;
border-right: 1px solid #e7e7e7;
z-index: 1;
}
.toc-filter {
border-radius: 5px;
background: #fff;
color: #666666;
padding: 5px;
position: relative;
margin: 0 5px 0 5px;
}
.toc-filter > input {
border: 0;
color: #666666;
padding-left: 20px;
padding-right: 20px;
width: 100%;
}
.toc-filter > input:focus {
outline: 0;
}
.toc-filter > .filter-icon {
position: absolute;
top: 10px;
left: 5px;
}
.toc-filter > .clear-icon {
position: absolute;
top: 10px;
right: 5px;
}
.article {
margin-top: 120px;
margin-bottom: 115px;
}
#_content>a{
margin-top: 105px;
}
.article.grid-right {
margin-left: 280px;
}
.inheritance hr {
margin-top: 5px;
margin-bottom: 5px;
}
.article img {
max-width: 100%;
}
.sideaffix {
margin-top: 50px;
font-size: 12px;
max-height: 100%;
overflow: hidden;
top: 100px;
bottom: 10px;
position: fixed;
}
.sideaffix.shiftup {
bottom: 70px;
}
.affix {
position: relative;
height: 100%;
}
.sideaffix > div.contribution {
margin-bottom: 20px;
}
.sideaffix > div.contribution > ul > li > a.contribution-link {
padding: 6px 10px;
font-weight: bold;
font-size: 14px;
}
.sideaffix > div.contribution > ul > li > a.contribution-link:hover {
background-color: #ffffff;
}
.sideaffix ul.nav > li > a:focus {
background: none;
}
.affix h5 {
font-weight: bold;
text-transform: uppercase;
padding-left: 10px;
font-size: 12px;
}
.affix > ul.level1 {
overflow: hidden;
padding-bottom: 10px;
height: calc(100% - 100px);
}
.affix ul > li > a:before {
color: #cccccc;
position: absolute;
}
.affix ul > li > a:hover {
background: none;
color: #666666;
}
.affix ul > li.active > a,
.affix ul > li.active > a:before {
color: #337ab7;
}
.affix ul > li > a {
padding: 5px 12px;
color: #666666;
}
.affix > ul > li.active:last-child {
margin-bottom: 50px;
}
.affix > ul > li > a:before {
content: "|";
font-size: 16px;
top: 1px;
left: 0;
}
.affix > ul > li.active > a,
.affix > ul > li.active > a:before {
color: #337ab7;
font-weight: bold;
}
.affix ul ul > li > a {
padding: 2px 15px;
}
.affix ul ul > li > a:before {
content: ">";
font-size: 14px;
top: -1px;
left: 5px;
}
.affix ul > li > a:before,
.affix ul ul {
display: none;
}
.affix ul > li.active > ul,
.affix ul > li.active > a:before,
.affix ul > li > a:hover:before {
display: block;
white-space: nowrap;
}
.codewrapper {
position: relative;
}
.trydiv {
height: 0px;
}
.tryspan {
position: absolute;
top: 0px;
right: 0px;
border-style: solid;
border-radius: 0px 4px;
box-sizing: border-box;
border-width: 1px;
border-color: #cccccc;
text-align: center;
padding: 2px 8px;
background-color: white;
font-size: 12px;
cursor: pointer;
z-index: 100;
display: none;
color: #767676;
}
.tryspan:hover {
background-color: #3b8bd0;
color: white;
border-color: #3b8bd0;
}
.codewrapper:hover .tryspan {
display: block;
}
.sample-response .response-content{
max-height: 200px;
}
footer {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
}
.footer {
border-top: 1px solid #e7e7e7;
background-color: #f8f8f8;
padding: 15px 0;
}
@media (min-width: 768px) {
#sidetoggle.collapse {
display: block;
}
.topnav .navbar-nav {
float: none;
white-space: nowrap;
}
.topnav .navbar-nav > li {
float: none;
display: inline-block;
}
}
@media only screen and (max-width: 768px) {
#mobile-indicator {
display: block;
}
/* TOC display for responsive */
.article {
margin-top: 30px !important;
}
header {
position: static;
}
.topnav {
text-align: center;
}
.sidenav {
padding: 15px 0;
margin-left: -15px;
margin-right: -15px;
}
.sidefilter {
position: static;
width: auto;
float: none;
border: none;
}
.sidetoc {
position: static;
width: auto;
float: none;
padding-bottom: 0px;
border: none;
}
.toc .nav > li, .toc .nav > li >a {
display: inline-block;
}
.toc li:after {
margin-left: -3px;
margin-right: 5px;
content: ", ";
color: #666666;
}
.toc .level1 > li {
display: block;
}
.toc .level1 > li:after {
display: none;
}
.article.grid-right {
margin-left: 0;
}
.grad-top,
.grad-bottom {
display: none;
}
.toc-toggle {
display: block;
}
.sidetoggle.ng-hide {
display: none !important;
}
/*.expand-all {
display: none;
}*/
.sideaffix {
display: none;
}
.mobile-hide {
display: none;
}
.breadcrumb {
white-space: inherit;
}
/* workaround for #hashtag url is no longer needed*/
h1:before,
h2:before,
h3:before,
h4:before {
content: '';
display: none;
}
}
/* For toc iframe */
@media (max-width: 260px) {
.toc .level2 > li {
display: block;
}
.toc .level2 > li:after {
display: none;
}
}
/* Code snippet */
code {
color: #717374;
background-color: #f1f2f3;
}
a code {
color: #337ab7;
background-color: #f1f2f3;
}
a code:hover {
text-decoration: underline;
}
.hljs-keyword {
color: rgb(86,156,214);
}
.hljs-string {
color: rgb(214, 157, 133);
}
pre {
border: 0;
}
/* For code snippet line highlight */
pre > code .line-highlight {
background-color: #ffffcc;
}
/* Alerts */
.alert h5 {
text-transform: uppercase;
font-weight: bold;
margin-top: 0;
}
.alert h5:before {
position:relative;
top:1px;
display:inline-block;
font-family:'Glyphicons Halflings';
line-height:1;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
margin-right: 5px;
font-weight: normal;
}
.alert-info h5:before {
content:"\e086"
}
.alert-warning h5:before {
content:"\e127"
}
.alert-danger h5:before {
content:"\e107"
}
/* For Embedded Video */
div.embeddedvideo {
padding-top: 56.25%;
position: relative;
width: 100%;
}
div.embeddedvideo iframe {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
/* For printer */
@media print{
.article.grid-right {
margin-top: 0px;
margin-left: 0px;
}
.sideaffix {
display: none;
}
.mobile-hide {
display: none;
}
.footer {
display: none;
}
}
/* For tabbed content */
.tabGroup {
margin-top: 1rem; }
.tabGroup ul[role="tablist"] {
margin: 0;
padding: 0;
list-style: none; }
.tabGroup ul[role="tablist"] > li {
list-style: none;
display: inline-block; }
.tabGroup a[role="tab"] {
color: #6e6e6e;
box-sizing: border-box;
display: inline-block;
padding: 5px 7.5px;
text-decoration: none;
border-bottom: 2px solid #fff; }
.tabGroup a[role="tab"]:hover, .tabGroup a[role="tab"]:focus, .tabGroup a[role="tab"][aria-selected="true"] {
border-bottom: 2px solid #0050C5; }
.tabGroup a[role="tab"][aria-selected="true"] {
color: #222; }
.tabGroup a[role="tab"]:hover, .tabGroup a[role="tab"]:focus {
color: #0050C5; }
.tabGroup a[role="tab"]:focus {
outline: 1px solid #0050C5;
outline-offset: -1px; }
@media (min-width: 768px) {
.tabGroup a[role="tab"] {
padding: 5px 15px; } }
.tabGroup section[role="tabpanel"] {
border: 1px solid #e0e0e0;
padding: 15px;
margin: 0;
overflow: hidden; }
.tabGroup section[role="tabpanel"] > .codeHeader,
.tabGroup section[role="tabpanel"] > pre {
margin-left: -16px;
margin-right: -16px; }
.tabGroup section[role="tabpanel"] > :first-child {
margin-top: 0; }
.tabGroup section[role="tabpanel"] > pre:last-child {
display: block;
margin-bottom: -16px; }
.mainContainer[dir='rtl'] main ul[role="tablist"] {
margin: 0; }
/* Color theme */
/* These are not important, tune down **/
.decalaration, .fieldValue, .parameters, .returns {
color: #a2a2a2;
}
/* Major sections, increase visibility **/
#fields, #properties, #methods, #events {
font-weight: bold;
margin-top: 2em;
}
```
|
/content/code_sandbox/docs/styles/docfx.css
|
css
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 5,880
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class TextParser
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class TextParser
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser">
<h1 id="System_Linq_Dynamic_Core_Tokenizer_TextParser" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser" class="text-break">Class TextParser
</h1>
<div class="markdown level0 summary"><p>TextParser which can be used to parse a text into tokens.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">TextParser</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.html">System.Linq.Dynamic.Core.Tokenizer</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Tokenizer_TextParser_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class TextParser</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L57">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Tokenizer_TextParser__ctor_" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.#ctor*"></a>
<h4 id=your_sha256_hashDynamic_Core_ParsingConfig_System_String_" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.#ctor(System.Linq.Dynamic.Core.ParsingConfig,System.String)">TextParser(ParsingConfig, String)</h4>
<div class="markdown level1 summary"><p>Constructor for TextParser</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public TextParser(ParsingConfig config, string text)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">text</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="fields">Fields
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L50">View Source</a>
</span>
<h4 id="System_Linq_Dynamic_Core_Tokenizer_TextParser_CurrentToken" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.CurrentToken">CurrentToken</h4>
<div class="markdown level1 summary"><p>The current parsed <a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.Token.html">Token</a>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Token CurrentToken</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.Token.html">Token</a></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L74">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Tokenizer_TextParser_Clone_" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.Clone*"></a>
<h4 id="System_Linq_Dynamic_Core_Tokenizer_TextParser_Clone" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.Clone">Clone()</h4>
<div class="markdown level1 summary"><p>This method is used to clone the current <a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.TextParser.html">TextParser</a>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public TextParser Clone()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.TextParser.html">TextParser</a></td>
<td><p>Cloned <a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.TextParser.html">TextParser</a></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L94">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Tokenizer_TextParser_NextToken_" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.NextToken*"></a>
<h4 id="System_Linq_Dynamic_Core_Tokenizer_TextParser_NextToken" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.NextToken">NextToken()</h4>
<div class="markdown level1 summary"><p>Go to the next token.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void NextToken()</code></pre>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L86">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Tokenizer_TextParser_PeekNextChar_" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.PeekNextChar*"></a>
<h4 id="System_Linq_Dynamic_Core_Tokenizer_TextParser_PeekNextChar" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.PeekNextChar">PeekNextChar()</h4>
<div class="markdown level1 summary"><p>Peek the next character.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public char PeekNextChar()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Char</span></td>
<td><p>The next character, or \0 if end of string.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L472">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Tokenizer_TextParser_ValidateToken_" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.ValidateToken*"></a>
<h4 id=your_sha256_hashem_Linq_Dynamic_Core_Tokenizer_TokenId_System_String_" data-uid="System.Linq.Dynamic.Core.Tokenizer.TextParser.ValidateToken(System.Linq.Dynamic.Core.Tokenizer.TokenId,System.String)">ValidateToken(TokenId, String)</h4>
<div class="markdown level1 summary"><p>Check if the current token is the specified <a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.TokenId.html">TokenId</a>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void ValidateToken(TokenId tokenId, string errorMessage = null)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.TokenId.html">TokenId</a></td>
<td><span class="parametername">tokenId</span></td>
<td><p>The tokenId to check.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">errorMessage</span></td>
<td><p>The (optional) error message.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L10" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Tokenizer.TextParser.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,884
|
```javascript
/**
* lunr - path_to_url - A bit like Solr, but much smaller and not as bright - 2.1.2
* @license MIT
*/
;(function(){
/**
* A convenience function for configuring and constructing
* a new lunr Index.
*
* A lunr.Builder instance is created and the pipeline setup
* with a trimmer, stop word filter and stemmer.
*
* This builder object is yielded to the configuration function
* that is passed as a parameter, allowing the list of fields
* and other builder parameters to be customised.
*
* All documents _must_ be added within the passed config function.
*
* @example
* var idx = lunr(function () {
* this.field('title')
* this.field('body')
* this.ref('id')
*
* documents.forEach(function (doc) {
* this.add(doc)
* }, this)
* })
*
* @see {@link lunr.Builder}
* @see {@link lunr.Pipeline}
* @see {@link lunr.trimmer}
* @see {@link lunr.stopWordFilter}
* @see {@link lunr.stemmer}
* @namespace {function} lunr
*/
var lunr = function (config) {
var builder = new lunr.Builder
builder.pipeline.add(
lunr.trimmer,
lunr.stopWordFilter,
lunr.stemmer
)
builder.searchPipeline.add(
lunr.stemmer
)
config.call(builder, builder)
return builder.build()
}
lunr.version = "2.1.2"
/*!
* lunr.utils
*/
/**
* A namespace containing utils for the rest of the lunr library
*/
lunr.utils = {}
/**
* Print a warning message to the console.
*
* @param {String} message The message to be printed.
* @memberOf Utils
*/
lunr.utils.warn = (function (global) {
/* eslint-disable no-console */
return function (message) {
if (global.console && console.warn) {
console.warn(message)
}
}
/* eslint-enable no-console */
})(this)
/**
* Convert an object to a string.
*
* In the case of `null` and `undefined` the function returns
* the empty string, in all other cases the result of calling
* `toString` on the passed object is returned.
*
* @param {Any} obj The object to convert to a string.
* @return {String} string representation of the passed object.
* @memberOf Utils
*/
lunr.utils.asString = function (obj) {
if (obj === void 0 || obj === null) {
return ""
} else {
return obj.toString()
}
}
lunr.FieldRef = function (docRef, fieldName) {
this.docRef = docRef
this.fieldName = fieldName
this._stringValue = fieldName + lunr.FieldRef.joiner + docRef
}
lunr.FieldRef.joiner = "/"
lunr.FieldRef.fromString = function (s) {
var n = s.indexOf(lunr.FieldRef.joiner)
if (n === -1) {
throw "malformed field ref string"
}
var fieldRef = s.slice(0, n),
docRef = s.slice(n + 1)
return new lunr.FieldRef (docRef, fieldRef)
}
lunr.FieldRef.prototype.toString = function () {
return this._stringValue
}
/**
* A function to calculate the inverse document frequency for
* a posting. This is shared between the builder and the index
*
* @private
* @param {object} posting - The posting for a given term
* @param {number} documentCount - The total number of documents.
*/
lunr.idf = function (posting, documentCount) {
var documentsWithTerm = 0
for (var fieldName in posting) {
if (fieldName == '_index') continue // Ignore the term index, its not a field
documentsWithTerm += Object.keys(posting[fieldName]).length
}
var x = (documentCount - documentsWithTerm + 0.5) / (documentsWithTerm + 0.5)
return Math.log(1 + Math.abs(x))
}
/**
* A token wraps a string representation of a token
* as it is passed through the text processing pipeline.
*
* @constructor
* @param {string} [str=''] - The string token being wrapped.
* @param {object} [metadata={}] - Metadata associated with this token.
*/
lunr.Token = function (str, metadata) {
this.str = str || ""
this.metadata = metadata || {}
}
/**
* Returns the token string that is being wrapped by this object.
*
* @returns {string}
*/
lunr.Token.prototype.toString = function () {
return this.str
}
/**
* A token update function is used when updating or optionally
* when cloning a token.
*
* @callback lunr.Token~updateFunction
* @param {string} str - The string representation of the token.
* @param {Object} metadata - All metadata associated with this token.
*/
/**
* Applies the given function to the wrapped string token.
*
* @example
* token.update(function (str, metadata) {
* return str.toUpperCase()
* })
*
* @param {lunr.Token~updateFunction} fn - A function to apply to the token string.
* @returns {lunr.Token}
*/
lunr.Token.prototype.update = function (fn) {
this.str = fn(this.str, this.metadata)
return this
}
/**
* Creates a clone of this token. Optionally a function can be
* applied to the cloned token.
*
* @param {lunr.Token~updateFunction} [fn] - An optional function to apply to the cloned token.
* @returns {lunr.Token}
*/
lunr.Token.prototype.clone = function (fn) {
fn = fn || function (s) { return s }
return new lunr.Token (fn(this.str, this.metadata), this.metadata)
}
/*!
* lunr.tokenizer
*/
/**
* A function for splitting a string into tokens ready to be inserted into
* the search index. Uses `lunr.tokenizer.separator` to split strings, change
* the value of this property to change how strings are split into tokens.
*
* This tokenizer will convert its parameter to a string by calling `toString` and
* then will split this string on the character in `lunr.tokenizer.separator`.
* Arrays will have their elements converted to strings and wrapped in a lunr.Token.
*
* @static
* @param {?(string|object|object[])} obj - The object to convert into tokens
* @returns {lunr.Token[]}
*/
lunr.tokenizer = function (obj) {
if (obj == null || obj == undefined) {
return []
}
if (Array.isArray(obj)) {
return obj.map(function (t) {
return new lunr.Token(lunr.utils.asString(t).toLowerCase())
})
}
var str = obj.toString().trim().toLowerCase(),
len = str.length,
tokens = []
for (var sliceEnd = 0, sliceStart = 0; sliceEnd <= len; sliceEnd++) {
var char = str.charAt(sliceEnd),
sliceLength = sliceEnd - sliceStart
if ((char.match(lunr.tokenizer.separator) || sliceEnd == len)) {
if (sliceLength > 0) {
tokens.push(
new lunr.Token (str.slice(sliceStart, sliceEnd), {
position: [sliceStart, sliceLength],
index: tokens.length
})
)
}
sliceStart = sliceEnd + 1
}
}
return tokens
}
/**
* The separator used to split a string into tokens. Override this property to change the behaviour of
* `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.
*
* @static
* @see lunr.tokenizer
*/
lunr.tokenizer.separator = /[\s\-]+/
/*!
* lunr.Pipeline
*/
/**
* lunr.Pipelines maintain an ordered list of functions to be applied to all
* tokens in documents entering the search index and queries being ran against
* the index.
*
* An instance of lunr.Index created with the lunr shortcut will contain a
* pipeline with a stop word filter and an English language stemmer. Extra
* functions can be added before or after either of these functions or these
* default functions can be removed.
*
* When run the pipeline will call each function in turn, passing a token, the
* index of that token in the original list of all tokens and finally a list of
* all the original tokens.
*
* The output of functions in the pipeline will be passed to the next function
* in the pipeline. To exclude a token from entering the index the function
* should return undefined, the rest of the pipeline will not be called with
* this token.
*
* For serialisation of pipelines to work, all functions used in an instance of
* a pipeline should be registered with lunr.Pipeline. Registered functions can
* then be loaded. If trying to load a serialised pipeline that uses functions
* that are not registered an error will be thrown.
*
* If not planning on serialising the pipeline then registering pipeline functions
* is not necessary.
*
* @constructor
*/
lunr.Pipeline = function () {
this._stack = []
}
lunr.Pipeline.registeredFunctions = Object.create(null)
/**
* A pipeline function maps lunr.Token to lunr.Token. A lunr.Token contains the token
* string as well as all known metadata. A pipeline function can mutate the token string
* or mutate (or add) metadata for a given token.
*
* A pipeline function can indicate that the passed token should be discarded by returning
* null. This token will not be passed to any downstream pipeline functions and will not be
* added to the index.
*
* Multiple tokens can be returned by returning an array of tokens. Each token will be passed
* to any downstream pipeline functions and all will returned tokens will be added to the index.
*
* Any number of pipeline functions may be chained together using a lunr.Pipeline.
*
* @interface lunr.PipelineFunction
* @param {lunr.Token} token - A token from the document being processed.
* @param {number} i - The index of this token in the complete list of tokens for this document/field.
* @param {lunr.Token[]} tokens - All tokens for this document/field.
* @returns {(?lunr.Token|lunr.Token[])}
*/
/**
* Register a function with the pipeline.
*
* Functions that are used in the pipeline should be registered if the pipeline
* needs to be serialised, or a serialised pipeline needs to be loaded.
*
* Registering a function does not add it to a pipeline, functions must still be
* added to instances of the pipeline for them to be used when running a pipeline.
*
* @param {lunr.PipelineFunction} fn - The function to check for.
* @param {String} label - The label to register this function with
*/
lunr.Pipeline.registerFunction = function (fn, label) {
if (label in this.registeredFunctions) {
lunr.utils.warn('Overwriting existing registered function: ' + label)
}
fn.label = label
lunr.Pipeline.registeredFunctions[fn.label] = fn
}
/**
* Warns if the function is not registered as a Pipeline function.
*
* @param {lunr.PipelineFunction} fn - The function to check for.
* @private
*/
lunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {
var isRegistered = fn.label && (fn.label in this.registeredFunctions)
if (!isRegistered) {
lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\n', fn)
}
}
/**
* Loads a previously serialised pipeline.
*
* All functions to be loaded must already be registered with lunr.Pipeline.
* If any function from the serialised data has not been registered then an
* error will be thrown.
*
* @param {Object} serialised - The serialised pipeline to load.
* @returns {lunr.Pipeline}
*/
lunr.Pipeline.load = function (serialised) {
var pipeline = new lunr.Pipeline
serialised.forEach(function (fnName) {
var fn = lunr.Pipeline.registeredFunctions[fnName]
if (fn) {
pipeline.add(fn)
} else {
throw new Error('Cannot load unregistered function: ' + fnName)
}
})
return pipeline
}
/**
* Adds new functions to the end of the pipeline.
*
* Logs a warning if the function has not been registered.
*
* @param {lunr.PipelineFunction[]} functions - Any number of functions to add to the pipeline.
*/
lunr.Pipeline.prototype.add = function () {
var fns = Array.prototype.slice.call(arguments)
fns.forEach(function (fn) {
lunr.Pipeline.warnIfFunctionNotRegistered(fn)
this._stack.push(fn)
}, this)
}
/**
* Adds a single function after a function that already exists in the
* pipeline.
*
* Logs a warning if the function has not been registered.
*
* @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.
* @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.
*/
lunr.Pipeline.prototype.after = function (existingFn, newFn) {
lunr.Pipeline.warnIfFunctionNotRegistered(newFn)
var pos = this._stack.indexOf(existingFn)
if (pos == -1) {
throw new Error('Cannot find existingFn')
}
pos = pos + 1
this._stack.splice(pos, 0, newFn)
}
/**
* Adds a single function before a function that already exists in the
* pipeline.
*
* Logs a warning if the function has not been registered.
*
* @param {lunr.PipelineFunction} existingFn - A function that already exists in the pipeline.
* @param {lunr.PipelineFunction} newFn - The new function to add to the pipeline.
*/
lunr.Pipeline.prototype.before = function (existingFn, newFn) {
lunr.Pipeline.warnIfFunctionNotRegistered(newFn)
var pos = this._stack.indexOf(existingFn)
if (pos == -1) {
throw new Error('Cannot find existingFn')
}
this._stack.splice(pos, 0, newFn)
}
/**
* Removes a function from the pipeline.
*
* @param {lunr.PipelineFunction} fn The function to remove from the pipeline.
*/
lunr.Pipeline.prototype.remove = function (fn) {
var pos = this._stack.indexOf(fn)
if (pos == -1) {
return
}
this._stack.splice(pos, 1)
}
/**
* Runs the current list of functions that make up the pipeline against the
* passed tokens.
*
* @param {Array} tokens The tokens to run through the pipeline.
* @returns {Array}
*/
lunr.Pipeline.prototype.run = function (tokens) {
var stackLength = this._stack.length
for (var i = 0; i < stackLength; i++) {
var fn = this._stack[i]
tokens = tokens.reduce(function (memo, token, j) {
var result = fn(token, j, tokens)
if (result === void 0 || result === '') return memo
return memo.concat(result)
}, [])
}
return tokens
}
/**
* Convenience method for passing a string through a pipeline and getting
* strings out. This method takes care of wrapping the passed string in a
* token and mapping the resulting tokens back to strings.
*
* @param {string} str - The string to pass through the pipeline.
* @returns {string[]}
*/
lunr.Pipeline.prototype.runString = function (str) {
var token = new lunr.Token (str)
return this.run([token]).map(function (t) {
return t.toString()
})
}
/**
* Resets the pipeline by removing any existing processors.
*
*/
lunr.Pipeline.prototype.reset = function () {
this._stack = []
}
/**
* Returns a representation of the pipeline ready for serialisation.
*
* Logs a warning if the function has not been registered.
*
* @returns {Array}
*/
lunr.Pipeline.prototype.toJSON = function () {
return this._stack.map(function (fn) {
lunr.Pipeline.warnIfFunctionNotRegistered(fn)
return fn.label
})
}
/*!
* lunr.Vector
*/
/**
* A vector is used to construct the vector space of documents and queries. These
* vectors support operations to determine the similarity between two documents or
* a document and a query.
*
* Normally no parameters are required for initializing a vector, but in the case of
* loading a previously dumped vector the raw elements can be provided to the constructor.
*
* For performance reasons vectors are implemented with a flat array, where an elements
* index is immediately followed by its value. E.g. [index, value, index, value]. This
* allows the underlying array to be as sparse as possible and still offer decent
* performance when being used for vector calculations.
*
* @constructor
* @param {Number[]} [elements] - The flat list of element index and element value pairs.
*/
lunr.Vector = function (elements) {
this._magnitude = 0
this.elements = elements || []
}
/**
* Calculates the position within the vector to insert a given index.
*
* This is used internally by insert and upsert. If there are duplicate indexes then
* the position is returned as if the value for that index were to be updated, but it
* is the callers responsibility to check whether there is a duplicate at that index
*
* @param {Number} insertIdx - The index at which the element should be inserted.
* @returns {Number}
*/
lunr.Vector.prototype.positionForIndex = function (index) {
// For an empty vector the tuple can be inserted at the beginning
if (this.elements.length == 0) {
return 0
}
var start = 0,
end = this.elements.length / 2,
sliceLength = end - start,
pivotPoint = Math.floor(sliceLength / 2),
pivotIndex = this.elements[pivotPoint * 2]
while (sliceLength > 1) {
if (pivotIndex < index) {
start = pivotPoint
}
if (pivotIndex > index) {
end = pivotPoint
}
if (pivotIndex == index) {
break
}
sliceLength = end - start
pivotPoint = start + Math.floor(sliceLength / 2)
pivotIndex = this.elements[pivotPoint * 2]
}
if (pivotIndex == index) {
return pivotPoint * 2
}
if (pivotIndex > index) {
return pivotPoint * 2
}
if (pivotIndex < index) {
return (pivotPoint + 1) * 2
}
}
/**
* Inserts an element at an index within the vector.
*
* Does not allow duplicates, will throw an error if there is already an entry
* for this index.
*
* @param {Number} insertIdx - The index at which the element should be inserted.
* @param {Number} val - The value to be inserted into the vector.
*/
lunr.Vector.prototype.insert = function (insertIdx, val) {
this.upsert(insertIdx, val, function () {
throw "duplicate index"
})
}
/**
* Inserts or updates an existing index within the vector.
*
* @param {Number} insertIdx - The index at which the element should be inserted.
* @param {Number} val - The value to be inserted into the vector.
* @param {function} fn - A function that is called for updates, the existing value and the
* requested value are passed as arguments
*/
lunr.Vector.prototype.upsert = function (insertIdx, val, fn) {
this._magnitude = 0
var position = this.positionForIndex(insertIdx)
if (this.elements[position] == insertIdx) {
this.elements[position + 1] = fn(this.elements[position + 1], val)
} else {
this.elements.splice(position, 0, insertIdx, val)
}
}
/**
* Calculates the magnitude of this vector.
*
* @returns {Number}
*/
lunr.Vector.prototype.magnitude = function () {
if (this._magnitude) return this._magnitude
var sumOfSquares = 0,
elementsLength = this.elements.length
for (var i = 1; i < elementsLength; i += 2) {
var val = this.elements[i]
sumOfSquares += val * val
}
return this._magnitude = Math.sqrt(sumOfSquares)
}
/**
* Calculates the dot product of this vector and another vector.
*
* @param {lunr.Vector} otherVector - The vector to compute the dot product with.
* @returns {Number}
*/
lunr.Vector.prototype.dot = function (otherVector) {
var dotProduct = 0,
a = this.elements, b = otherVector.elements,
aLen = a.length, bLen = b.length,
aVal = 0, bVal = 0,
i = 0, j = 0
while (i < aLen && j < bLen) {
aVal = a[i], bVal = b[j]
if (aVal < bVal) {
i += 2
} else if (aVal > bVal) {
j += 2
} else if (aVal == bVal) {
dotProduct += a[i + 1] * b[j + 1]
i += 2
j += 2
}
}
return dotProduct
}
/**
* Calculates the cosine similarity between this vector and another
* vector.
*
* @param {lunr.Vector} otherVector - The other vector to calculate the
* similarity with.
* @returns {Number}
*/
lunr.Vector.prototype.similarity = function (otherVector) {
return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())
}
/**
* Converts the vector to an array of the elements within the vector.
*
* @returns {Number[]}
*/
lunr.Vector.prototype.toArray = function () {
var output = new Array (this.elements.length / 2)
for (var i = 1, j = 0; i < this.elements.length; i += 2, j++) {
output[j] = this.elements[i]
}
return output
}
/**
* A JSON serializable representation of the vector.
*
* @returns {Number[]}
*/
lunr.Vector.prototype.toJSON = function () {
return this.elements
}
/* eslint-disable */
/*!
* lunr.stemmer
* Includes code from - path_to_url~martin/PorterStemmer/js.txt
*/
/**
* lunr.stemmer is an english language stemmer, this is a JavaScript
* implementation of the PorterStemmer taken from path_to_url~martin
*
* @static
* @implements {lunr.PipelineFunction}
* @param {lunr.Token} token - The string to stem
* @returns {lunr.Token}
* @see {@link lunr.Pipeline}
*/
lunr.stemmer = (function(){
var step2list = {
"ational" : "ate",
"tional" : "tion",
"enci" : "ence",
"anci" : "ance",
"izer" : "ize",
"bli" : "ble",
"alli" : "al",
"entli" : "ent",
"eli" : "e",
"ousli" : "ous",
"ization" : "ize",
"ation" : "ate",
"ator" : "ate",
"alism" : "al",
"iveness" : "ive",
"fulness" : "ful",
"ousness" : "ous",
"aliti" : "al",
"iviti" : "ive",
"biliti" : "ble",
"logi" : "log"
},
step3list = {
"icate" : "ic",
"ative" : "",
"alize" : "al",
"iciti" : "ic",
"ical" : "ic",
"ful" : "",
"ness" : ""
},
c = "[^aeiou]", // consonant
v = "[aeiouy]", // vowel
C = c + "[^aeiouy]*", // consonant sequence
V = v + "[aeiou]*", // vowel sequence
mgr0 = "^(" + C + ")?" + V + C, // [C]VC... is m>0
meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$", // [C]VC[V] is m=1
mgr1 = "^(" + C + ")?" + V + C + V + C, // [C]VCVC... is m>1
s_v = "^(" + C + ")?" + v; // vowel in stem
var re_mgr0 = new RegExp(mgr0);
var re_mgr1 = new RegExp(mgr1);
var re_meq1 = new RegExp(meq1);
var re_s_v = new RegExp(s_v);
var re_1a = /^(.+?)(ss|i)es$/;
var re2_1a = /^(.+?)([^s])s$/;
var re_1b = /^(.+?)eed$/;
var re2_1b = /^(.+?)(ed|ing)$/;
var re_1b_2 = /.$/;
var re2_1b_2 = /(at|bl|iz)$/;
var re3_1b_2 = new RegExp("([^aeiouylsz])\\1$");
var re4_1b_2 = new RegExp("^" + C + v + "[^aeiouwxy]$");
var re_1c = /^(.+?[^aeiou])y$/;
var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
var re2_4 = /^(.+?)(s|t)(ion)$/;
var re_5 = /^(.+?)e$/;
var re_5_1 = /ll$/;
var re3_5 = new RegExp("^" + C + v + "[^aeiouwxy]$");
var porterStemmer = function porterStemmer(w) {
var stem,
suffix,
firstch,
re,
re2,
re3,
re4;
if (w.length < 3) { return w; }
firstch = w.substr(0,1);
if (firstch == "y") {
w = firstch.toUpperCase() + w.substr(1);
}
// Step 1a
re = re_1a
re2 = re2_1a;
if (re.test(w)) { w = w.replace(re,"$1$2"); }
else if (re2.test(w)) { w = w.replace(re2,"$1$2"); }
// Step 1b
re = re_1b;
re2 = re2_1b;
if (re.test(w)) {
var fp = re.exec(w);
re = re_mgr0;
if (re.test(fp[1])) {
re = re_1b_2;
w = w.replace(re,"");
}
} else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1];
re2 = re_s_v;
if (re2.test(stem)) {
w = stem;
re2 = re2_1b_2;
re3 = re3_1b_2;
re4 = re4_1b_2;
if (re2.test(w)) { w = w + "e"; }
else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,""); }
else if (re4.test(w)) { w = w + "e"; }
}
}
// Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)
re = re_1c;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
w = stem + "i";
}
// Step 2
re = re_2;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = re_mgr0;
if (re.test(stem)) {
w = stem + step2list[suffix];
}
}
// Step 3
re = re_3;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
suffix = fp[2];
re = re_mgr0;
if (re.test(stem)) {
w = stem + step3list[suffix];
}
}
// Step 4
re = re_4;
re2 = re2_4;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = re_mgr1;
if (re.test(stem)) {
w = stem;
}
} else if (re2.test(w)) {
var fp = re2.exec(w);
stem = fp[1] + fp[2];
re2 = re_mgr1;
if (re2.test(stem)) {
w = stem;
}
}
// Step 5
re = re_5;
if (re.test(w)) {
var fp = re.exec(w);
stem = fp[1];
re = re_mgr1;
re2 = re_meq1;
re3 = re3_5;
if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {
w = stem;
}
}
re = re_5_1;
re2 = re_mgr1;
if (re.test(w) && re2.test(w)) {
re = re_1b_2;
w = w.replace(re,"");
}
// and turn initial Y back to y
if (firstch == "y") {
w = firstch.toLowerCase() + w.substr(1);
}
return w;
};
return function (token) {
return token.update(porterStemmer);
}
})();
lunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')
/*!
* lunr.stopWordFilter
*/
/**
* lunr.generateStopWordFilter builds a stopWordFilter function from the provided
* list of stop words.
*
* The built in lunr.stopWordFilter is built using this generator and can be used
* to generate custom stopWordFilters for applications or non English languages.
*
* @param {Array} token The token to pass through the filter
* @returns {lunr.PipelineFunction}
* @see lunr.Pipeline
* @see lunr.stopWordFilter
*/
lunr.generateStopWordFilter = function (stopWords) {
var words = stopWords.reduce(function (memo, stopWord) {
memo[stopWord] = stopWord
return memo
}, {})
return function (token) {
if (token && words[token.toString()] !== token.toString()) return token
}
}
/**
* lunr.stopWordFilter is an English language stop word list filter, any words
* contained in the list will not be passed through the filter.
*
* This is intended to be used in the Pipeline. If the token does not pass the
* filter then undefined will be returned.
*
* @implements {lunr.PipelineFunction}
* @params {lunr.Token} token - A token to check for being a stop word.
* @returns {lunr.Token}
* @see {@link lunr.Pipeline}
*/
lunr.stopWordFilter = lunr.generateStopWordFilter([
'a',
'able',
'about',
'across',
'after',
'all',
'almost',
'also',
'am',
'among',
'an',
'and',
'any',
'are',
'as',
'at',
'be',
'because',
'been',
'but',
'by',
'can',
'cannot',
'could',
'dear',
'did',
'do',
'does',
'either',
'else',
'ever',
'every',
'for',
'from',
'get',
'got',
'had',
'has',
'have',
'he',
'her',
'hers',
'him',
'his',
'how',
'however',
'i',
'if',
'in',
'into',
'is',
'it',
'its',
'just',
'least',
'let',
'like',
'likely',
'may',
'me',
'might',
'most',
'must',
'my',
'neither',
'no',
'nor',
'not',
'of',
'off',
'often',
'on',
'only',
'or',
'other',
'our',
'own',
'rather',
'said',
'say',
'says',
'she',
'should',
'since',
'so',
'some',
'than',
'that',
'the',
'their',
'them',
'then',
'there',
'these',
'they',
'this',
'tis',
'to',
'too',
'twas',
'us',
'wants',
'was',
'we',
'were',
'what',
'when',
'where',
'which',
'while',
'who',
'whom',
'why',
'will',
'with',
'would',
'yet',
'you',
'your'
])
lunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')
/*!
* lunr.trimmer
*/
/**
* lunr.trimmer is a pipeline function for trimming non word
* characters from the beginning and end of tokens before they
* enter the index.
*
* This implementation may not work correctly for non latin
* characters and should either be removed or adapted for use
* with languages with non-latin characters.
*
* @static
* @implements {lunr.PipelineFunction}
* @param {lunr.Token} token The token to pass through the filter
* @returns {lunr.Token}
* @see lunr.Pipeline
*/
lunr.trimmer = function (token) {
return token.update(function (s) {
return s.replace(/^\W+/, '').replace(/\W+$/, '')
})
}
lunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')
/*!
* lunr.TokenSet
*/
/**
* A token set is used to store the unique list of all tokens
* within an index. Token sets are also used to represent an
* incoming query to the index, this query token set and index
* token set are then intersected to find which tokens to look
* up in the inverted index.
*
* A token set can hold multiple tokens, as in the case of the
* index token set, or it can hold a single token as in the
* case of a simple query token set.
*
* Additionally token sets are used to perform wildcard matching.
* Leading, contained and trailing wildcards are supported, and
* from this edit distance matching can also be provided.
*
* Token sets are implemented as a minimal finite state automata,
* where both common prefixes and suffixes are shared between tokens.
* This helps to reduce the space used for storing the token set.
*
* @constructor
*/
lunr.TokenSet = function () {
this.final = false
this.edges = {}
this.id = lunr.TokenSet._nextId
lunr.TokenSet._nextId += 1
}
/**
* Keeps track of the next, auto increment, identifier to assign
* to a new tokenSet.
*
* TokenSets require a unique identifier to be correctly minimised.
*
* @private
*/
lunr.TokenSet._nextId = 1
/**
* Creates a TokenSet instance from the given sorted array of words.
*
* @param {String[]} arr - A sorted array of strings to create the set from.
* @returns {lunr.TokenSet}
* @throws Will throw an error if the input array is not sorted.
*/
lunr.TokenSet.fromArray = function (arr) {
var builder = new lunr.TokenSet.Builder
for (var i = 0, len = arr.length; i < len; i++) {
builder.insert(arr[i])
}
builder.finish()
return builder.root
}
/**
* Creates a token set from a query clause.
*
* @private
* @param {Object} clause - A single clause from lunr.Query.
* @param {string} clause.term - The query clause term.
* @param {number} [clause.editDistance] - The optional edit distance for the term.
* @returns {lunr.TokenSet}
*/
lunr.TokenSet.fromClause = function (clause) {
if ('editDistance' in clause) {
return lunr.TokenSet.fromFuzzyString(clause.term, clause.editDistance)
} else {
return lunr.TokenSet.fromString(clause.term)
}
}
/**
* Creates a token set representing a single string with a specified
* edit distance.
*
* Insertions, deletions, substitutions and transpositions are each
* treated as an edit distance of 1.
*
* Increasing the allowed edit distance will have a dramatic impact
* on the performance of both creating and intersecting these TokenSets.
* It is advised to keep the edit distance less than 3.
*
* @param {string} str - The string to create the token set from.
* @param {number} editDistance - The allowed edit distance to match.
* @returns {lunr.Vector}
*/
lunr.TokenSet.fromFuzzyString = function (str, editDistance) {
var root = new lunr.TokenSet
var stack = [{
node: root,
editsRemaining: editDistance,
str: str
}]
while (stack.length) {
var frame = stack.pop()
// no edit
if (frame.str.length > 0) {
var char = frame.str.charAt(0),
noEditNode
if (char in frame.node.edges) {
noEditNode = frame.node.edges[char]
} else {
noEditNode = new lunr.TokenSet
frame.node.edges[char] = noEditNode
}
if (frame.str.length == 1) {
noEditNode.final = true
} else {
stack.push({
node: noEditNode,
editsRemaining: frame.editsRemaining,
str: frame.str.slice(1)
})
}
}
// deletion
// can only do a deletion if we have enough edits remaining
// and if there are characters left to delete in the string
if (frame.editsRemaining > 0 && frame.str.length > 1) {
var char = frame.str.charAt(1),
deletionNode
if (char in frame.node.edges) {
deletionNode = frame.node.edges[char]
} else {
deletionNode = new lunr.TokenSet
frame.node.edges[char] = deletionNode
}
if (frame.str.length <= 2) {
deletionNode.final = true
} else {
stack.push({
node: deletionNode,
editsRemaining: frame.editsRemaining - 1,
str: frame.str.slice(2)
})
}
}
// deletion
// just removing the last character from the str
if (frame.editsRemaining > 0 && frame.str.length == 1) {
frame.node.final = true
}
// substitution
// can only do a substitution if we have enough edits remaining
// and if there are characters left to substitute
if (frame.editsRemaining > 0 && frame.str.length >= 1) {
if ("*" in frame.node.edges) {
var substitutionNode = frame.node.edges["*"]
} else {
var substitutionNode = new lunr.TokenSet
frame.node.edges["*"] = substitutionNode
}
if (frame.str.length == 1) {
substitutionNode.final = true
} else {
stack.push({
node: substitutionNode,
editsRemaining: frame.editsRemaining - 1,
str: frame.str.slice(1)
})
}
}
// insertion
// can only do insertion if there are edits remaining
if (frame.editsRemaining > 0) {
if ("*" in frame.node.edges) {
var insertionNode = frame.node.edges["*"]
} else {
var insertionNode = new lunr.TokenSet
frame.node.edges["*"] = insertionNode
}
if (frame.str.length == 0) {
insertionNode.final = true
} else {
stack.push({
node: insertionNode,
editsRemaining: frame.editsRemaining - 1,
str: frame.str
})
}
}
// transposition
// can only do a transposition if there are edits remaining
// and there are enough characters to transpose
if (frame.editsRemaining > 0 && frame.str.length > 1) {
var charA = frame.str.charAt(0),
charB = frame.str.charAt(1),
transposeNode
if (charB in frame.node.edges) {
transposeNode = frame.node.edges[charB]
} else {
transposeNode = new lunr.TokenSet
frame.node.edges[charB] = transposeNode
}
if (frame.str.length == 1) {
transposeNode.final = true
} else {
stack.push({
node: transposeNode,
editsRemaining: frame.editsRemaining - 1,
str: charA + frame.str.slice(2)
})
}
}
}
return root
}
/**
* Creates a TokenSet from a string.
*
* The string may contain one or more wildcard characters (*)
* that will allow wildcard matching when intersecting with
* another TokenSet.
*
* @param {string} str - The string to create a TokenSet from.
* @returns {lunr.TokenSet}
*/
lunr.TokenSet.fromString = function (str) {
var node = new lunr.TokenSet,
root = node,
wildcardFound = false
/*
* Iterates through all characters within the passed string
* appending a node for each character.
*
* As soon as a wildcard character is found then a self
* referencing edge is introduced to continually match
* any number of any characters.
*/
for (var i = 0, len = str.length; i < len; i++) {
var char = str[i],
final = (i == len - 1)
if (char == "*") {
wildcardFound = true
node.edges[char] = node
node.final = final
} else {
var next = new lunr.TokenSet
next.final = final
node.edges[char] = next
node = next
// TODO: is this needed anymore?
if (wildcardFound) {
node.edges["*"] = root
}
}
}
return root
}
/**
* Converts this TokenSet into an array of strings
* contained within the TokenSet.
*
* @returns {string[]}
*/
lunr.TokenSet.prototype.toArray = function () {
var words = []
var stack = [{
prefix: "",
node: this
}]
while (stack.length) {
var frame = stack.pop(),
edges = Object.keys(frame.node.edges),
len = edges.length
if (frame.node.final) {
words.push(frame.prefix)
}
for (var i = 0; i < len; i++) {
var edge = edges[i]
stack.push({
prefix: frame.prefix.concat(edge),
node: frame.node.edges[edge]
})
}
}
return words
}
/**
* Generates a string representation of a TokenSet.
*
* This is intended to allow TokenSets to be used as keys
* in objects, largely to aid the construction and minimisation
* of a TokenSet. As such it is not designed to be a human
* friendly representation of the TokenSet.
*
* @returns {string}
*/
lunr.TokenSet.prototype.toString = function () {
// NOTE: Using Object.keys here as this.edges is very likely
// to enter 'hash-mode' with many keys being added
//
// avoiding a for-in loop here as it leads to the function
// being de-optimised (at least in V8). From some simple
// benchmarks the performance is comparable, but allowing
// V8 to optimize may mean easy performance wins in the future.
if (this._str) {
return this._str
}
var str = this.final ? '1' : '0',
labels = Object.keys(this.edges).sort(),
len = labels.length
for (var i = 0; i < len; i++) {
var label = labels[i],
node = this.edges[label]
str = str + label + node.id
}
return str
}
/**
* Returns a new TokenSet that is the intersection of
* this TokenSet and the passed TokenSet.
*
* This intersection will take into account any wildcards
* contained within the TokenSet.
*
* @param {lunr.TokenSet} b - An other TokenSet to intersect with.
* @returns {lunr.TokenSet}
*/
lunr.TokenSet.prototype.intersect = function (b) {
var output = new lunr.TokenSet,
frame = undefined
var stack = [{
qNode: b,
output: output,
node: this
}]
while (stack.length) {
frame = stack.pop()
// NOTE: As with the #toString method, we are using
// Object.keys and a for loop instead of a for-in loop
// as both of these objects enter 'hash' mode, causing
// the function to be de-optimised in V8
var qEdges = Object.keys(frame.qNode.edges),
qLen = qEdges.length,
nEdges = Object.keys(frame.node.edges),
nLen = nEdges.length
for (var q = 0; q < qLen; q++) {
var qEdge = qEdges[q]
for (var n = 0; n < nLen; n++) {
var nEdge = nEdges[n]
if (nEdge == qEdge || qEdge == '*') {
var node = frame.node.edges[nEdge],
qNode = frame.qNode.edges[qEdge],
final = node.final && qNode.final,
next = undefined
if (nEdge in frame.output.edges) {
// an edge already exists for this character
// no need to create a new node, just set the finality
// bit unless this node is already final
next = frame.output.edges[nEdge]
next.final = next.final || final
} else {
// no edge exists yet, must create one
// set the finality bit and insert it
// into the output
next = new lunr.TokenSet
next.final = final
frame.output.edges[nEdge] = next
}
stack.push({
qNode: qNode,
output: next,
node: node
})
}
}
}
}
return output
}
lunr.TokenSet.Builder = function () {
this.previousWord = ""
this.root = new lunr.TokenSet
this.uncheckedNodes = []
this.minimizedNodes = {}
}
lunr.TokenSet.Builder.prototype.insert = function (word) {
var node,
commonPrefix = 0
if (word < this.previousWord) {
throw new Error ("Out of order word insertion")
}
for (var i = 0; i < word.length && i < this.previousWord.length; i++) {
if (word[i] != this.previousWord[i]) break
commonPrefix++
}
this.minimize(commonPrefix)
if (this.uncheckedNodes.length == 0) {
node = this.root
} else {
node = this.uncheckedNodes[this.uncheckedNodes.length - 1].child
}
for (var i = commonPrefix; i < word.length; i++) {
var nextNode = new lunr.TokenSet,
char = word[i]
node.edges[char] = nextNode
this.uncheckedNodes.push({
parent: node,
char: char,
child: nextNode
})
node = nextNode
}
node.final = true
this.previousWord = word
}
lunr.TokenSet.Builder.prototype.finish = function () {
this.minimize(0)
}
lunr.TokenSet.Builder.prototype.minimize = function (downTo) {
for (var i = this.uncheckedNodes.length - 1; i >= downTo; i--) {
var node = this.uncheckedNodes[i],
childKey = node.child.toString()
if (childKey in this.minimizedNodes) {
node.parent.edges[node.char] = this.minimizedNodes[childKey]
} else {
// Cache the key for this node since
// we know it can't change anymore
node.child._str = childKey
this.minimizedNodes[childKey] = node.child
}
this.uncheckedNodes.pop()
}
}
/*!
* lunr.Index
*/
/**
* An index contains the built index of all documents and provides a query interface
* to the index.
*
* Usually instances of lunr.Index will not be created using this constructor, instead
* lunr.Builder should be used to construct new indexes, or lunr.Index.load should be
* used to load previously built and serialized indexes.
*
* @constructor
* @param {Object} attrs - The attributes of the built search index.
* @param {Object} attrs.invertedIndex - An index of term/field to document reference.
* @param {Object<string, lunr.Vector>} attrs.documentVectors - Document vectors keyed by document reference.
* @param {lunr.TokenSet} attrs.tokenSet - An set of all corpus tokens.
* @param {string[]} attrs.fields - The names of indexed document fields.
* @param {lunr.Pipeline} attrs.pipeline - The pipeline to use for search terms.
*/
lunr.Index = function (attrs) {
this.invertedIndex = attrs.invertedIndex
this.fieldVectors = attrs.fieldVectors
this.tokenSet = attrs.tokenSet
this.fields = attrs.fields
this.pipeline = attrs.pipeline
}
/**
* A result contains details of a document matching a search query.
* @typedef {Object} lunr.Index~Result
* @property {string} ref - The reference of the document this result represents.
* @property {number} score - A number between 0 and 1 representing how similar this document is to the query.
* @property {lunr.MatchData} matchData - Contains metadata about this match including which term(s) caused the match.
*/
/**
* Although lunr provides the ability to create queries using lunr.Query, it also provides a simple
* query language which itself is parsed into an instance of lunr.Query.
*
* For programmatically building queries it is advised to directly use lunr.Query, the query language
* is best used for human entered text rather than program generated text.
*
* At its simplest queries can just be a single term, e.g. `hello`, multiple terms are also supported
* and will be combined with OR, e.g `hello world` will match documents that contain either 'hello'
* or 'world', though those that contain both will rank higher in the results.
*
* Wildcards can be included in terms to match one or more unspecified characters, these wildcards can
* be inserted anywhere within the term, and more than one wildcard can exist in a single term. Adding
* wildcards will increase the number of documents that will be found but can also have a negative
* impact on query performance, especially with wildcards at the beginning of a term.
*
* Terms can be restricted to specific fields, e.g. `title:hello`, only documents with the term
* hello in the title field will match this query. Using a field not present in the index will lead
* to an error being thrown.
*
* Modifiers can also be added to terms, lunr supports edit distance and boost modifiers on terms. A term
* boost will make documents matching that term score higher, e.g. `foo^5`. Edit distance is also supported
* to provide fuzzy matching, e.g. 'hello~2' will match documents with hello with an edit distance of 2.
* Avoid large values for edit distance to improve query performance.
*
* To escape special characters the backslash character '\' can be used, this allows searches to include
* characters that would normally be considered modifiers, e.g. `foo\~2` will search for a term "foo~2" instead
* of attempting to apply a boost of 2 to the search term "foo".
*
* @typedef {string} lunr.Index~QueryString
* @example <caption>Simple single term query</caption>
* hello
* @example <caption>Multiple term query</caption>
* hello world
* @example <caption>term scoped to a field</caption>
* title:hello
* @example <caption>term with a boost of 10</caption>
* hello^10
* @example <caption>term with an edit distance of 2</caption>
* hello~2
*/
/**
* Performs a search against the index using lunr query syntax.
*
* Results will be returned sorted by their score, the most relevant results
* will be returned first.
*
* For more programmatic querying use lunr.Index#query.
*
* @param {lunr.Index~QueryString} queryString - A string containing a lunr query.
* @throws {lunr.QueryParseError} If the passed query string cannot be parsed.
* @returns {lunr.Index~Result[]}
*/
lunr.Index.prototype.search = function (queryString) {
return this.query(function (query) {
var parser = new lunr.QueryParser(queryString, query)
parser.parse()
})
}
/**
* A query builder callback provides a query object to be used to express
* the query to perform on the index.
*
* @callback lunr.Index~queryBuilder
* @param {lunr.Query} query - The query object to build up.
* @this lunr.Query
*/
/**
* Performs a query against the index using the yielded lunr.Query object.
*
* If performing programmatic queries against the index, this method is preferred
* over lunr.Index#search so as to avoid the additional query parsing overhead.
*
* A query object is yielded to the supplied function which should be used to
* express the query to be run against the index.
*
* Note that although this function takes a callback parameter it is _not_ an
* asynchronous operation, the callback is just yielded a query object to be
* customized.
*
* @param {lunr.Index~queryBuilder} fn - A function that is used to build the query.
* @returns {lunr.Index~Result[]}
*/
lunr.Index.prototype.query = function (fn) {
// for each query clause
// * process terms
// * expand terms from token set
// * find matching documents and metadata
// * get document vectors
// * score documents
var query = new lunr.Query(this.fields),
matchingFields = Object.create(null),
queryVectors = Object.create(null)
fn.call(query, query)
for (var i = 0; i < query.clauses.length; i++) {
/*
* Unless the pipeline has been disabled for this term, which is
* the case for terms with wildcards, we need to pass the clause
* term through the search pipeline. A pipeline returns an array
* of processed terms. Pipeline functions may expand the passed
* term, which means we may end up performing multiple index lookups
* for a single query term.
*/
var clause = query.clauses[i],
terms = null
if (clause.usePipeline) {
terms = this.pipeline.runString(clause.term)
} else {
terms = [clause.term]
}
for (var m = 0; m < terms.length; m++) {
var term = terms[m]
/*
* Each term returned from the pipeline needs to use the same query
* clause object, e.g. the same boost and or edit distance. The
* simplest way to do this is to re-use the clause object but mutate
* its term property.
*/
clause.term = term
/*
* From the term in the clause we create a token set which will then
* be used to intersect the indexes token set to get a list of terms
* to lookup in the inverted index
*/
var termTokenSet = lunr.TokenSet.fromClause(clause),
expandedTerms = this.tokenSet.intersect(termTokenSet).toArray()
for (var j = 0; j < expandedTerms.length; j++) {
/*
* For each term get the posting and termIndex, this is required for
* building the query vector.
*/
var expandedTerm = expandedTerms[j],
posting = this.invertedIndex[expandedTerm],
termIndex = posting._index
for (var k = 0; k < clause.fields.length; k++) {
/*
* For each field that this query term is scoped by (by default
* all fields are in scope) we need to get all the document refs
* that have this term in that field.
*
* The posting is the entry in the invertedIndex for the matching
* term from above.
*/
var field = clause.fields[k],
fieldPosting = posting[field],
matchingDocumentRefs = Object.keys(fieldPosting)
/*
* To support field level boosts a query vector is created per
* field. This vector is populated using the termIndex found for
* the term and a unit value with the appropriate boost applied.
*
* If the query vector for this field does not exist yet it needs
* to be created.
*/
if (!(field in queryVectors)) {
queryVectors[field] = new lunr.Vector
}
/*
* Using upsert because there could already be an entry in the vector
* for the term we are working with. In that case we just add the scores
* together.
*/
queryVectors[field].upsert(termIndex, 1 * clause.boost, function (a, b) { return a + b })
for (var l = 0; l < matchingDocumentRefs.length; l++) {
/*
* All metadata for this term/field/document triple
* are then extracted and collected into an instance
* of lunr.MatchData ready to be returned in the query
* results
*/
var matchingDocumentRef = matchingDocumentRefs[l],
matchingFieldRef = new lunr.FieldRef (matchingDocumentRef, field),
documentMetadata, matchData
documentMetadata = fieldPosting[matchingDocumentRef]
matchData = new lunr.MatchData (expandedTerm, field, documentMetadata)
if (matchingFieldRef in matchingFields) {
matchingFields[matchingFieldRef].combine(matchData)
} else {
matchingFields[matchingFieldRef] = matchData
}
}
}
}
}
}
var matchingFieldRefs = Object.keys(matchingFields),
results = {}
for (var i = 0; i < matchingFieldRefs.length; i++) {
/*
* Currently we have document fields that match the query, but we
* need to return documents. The matchData and scores are combined
* from multiple fields belonging to the same document.
*
* Scores are calculated by field, using the query vectors created
* above, and combined into a final document score using addition.
*/
var fieldRef = lunr.FieldRef.fromString(matchingFieldRefs[i]),
docRef = fieldRef.docRef,
fieldVector = this.fieldVectors[fieldRef],
score = queryVectors[fieldRef.fieldName].similarity(fieldVector)
if (docRef in results) {
results[docRef].score += score
results[docRef].matchData.combine(matchingFields[fieldRef])
} else {
results[docRef] = {
ref: docRef,
score: score,
matchData: matchingFields[fieldRef]
}
}
}
/*
* The results object needs to be converted into a list
* of results, sorted by score before being returned.
*/
return Object.keys(results)
.map(function (key) {
return results[key]
})
.sort(function (a, b) {
return b.score - a.score
})
}
/**
* Prepares the index for JSON serialization.
*
* The schema for this JSON blob will be described in a
* separate JSON schema file.
*
* @returns {Object}
*/
lunr.Index.prototype.toJSON = function () {
var invertedIndex = Object.keys(this.invertedIndex)
.sort()
.map(function (term) {
return [term, this.invertedIndex[term]]
}, this)
var fieldVectors = Object.keys(this.fieldVectors)
.map(function (ref) {
return [ref, this.fieldVectors[ref].toJSON()]
}, this)
return {
version: lunr.version,
fields: this.fields,
fieldVectors: fieldVectors,
invertedIndex: invertedIndex,
pipeline: this.pipeline.toJSON()
}
}
/**
* Loads a previously serialized lunr.Index
*
* @param {Object} serializedIndex - A previously serialized lunr.Index
* @returns {lunr.Index}
*/
lunr.Index.load = function (serializedIndex) {
var attrs = {},
fieldVectors = {},
serializedVectors = serializedIndex.fieldVectors,
invertedIndex = {},
serializedInvertedIndex = serializedIndex.invertedIndex,
tokenSetBuilder = new lunr.TokenSet.Builder,
pipeline = lunr.Pipeline.load(serializedIndex.pipeline)
if (serializedIndex.version != lunr.version) {
lunr.utils.warn("Version mismatch when loading serialised index. Current version of lunr '" + lunr.version + "' does not match serialized index '" + serializedIndex.version + "'")
}
for (var i = 0; i < serializedVectors.length; i++) {
var tuple = serializedVectors[i],
ref = tuple[0],
elements = tuple[1]
fieldVectors[ref] = new lunr.Vector(elements)
}
for (var i = 0; i < serializedInvertedIndex.length; i++) {
var tuple = serializedInvertedIndex[i],
term = tuple[0],
posting = tuple[1]
tokenSetBuilder.insert(term)
invertedIndex[term] = posting
}
tokenSetBuilder.finish()
attrs.fields = serializedIndex.fields
attrs.fieldVectors = fieldVectors
attrs.invertedIndex = invertedIndex
attrs.tokenSet = tokenSetBuilder.root
attrs.pipeline = pipeline
return new lunr.Index(attrs)
}
/*!
* lunr.Builder
*/
/**
* lunr.Builder performs indexing on a set of documents and
* returns instances of lunr.Index ready for querying.
*
* All configuration of the index is done via the builder, the
* fields to index, the document reference, the text processing
* pipeline and document scoring parameters are all set on the
* builder before indexing.
*
* @constructor
* @property {string} _ref - Internal reference to the document reference field.
* @property {string[]} _fields - Internal reference to the document fields to index.
* @property {object} invertedIndex - The inverted index maps terms to document fields.
* @property {object} documentTermFrequencies - Keeps track of document term frequencies.
* @property {object} documentLengths - Keeps track of the length of documents added to the index.
* @property {lunr.tokenizer} tokenizer - Function for splitting strings into tokens for indexing.
* @property {lunr.Pipeline} pipeline - The pipeline performs text processing on tokens before indexing.
* @property {lunr.Pipeline} searchPipeline - A pipeline for processing search terms before querying the index.
* @property {number} documentCount - Keeps track of the total number of documents indexed.
* @property {number} _b - A parameter to control field length normalization, setting this to 0 disabled normalization, 1 fully normalizes field lengths, the default value is 0.75.
* @property {number} _k1 - A parameter to control how quickly an increase in term frequency results in term frequency saturation, the default value is 1.2.
* @property {number} termIndex - A counter incremented for each unique term, used to identify a terms position in the vector space.
* @property {array} metadataWhitelist - A list of metadata keys that have been whitelisted for entry in the index.
*/
lunr.Builder = function () {
this._ref = "id"
this._fields = []
this.invertedIndex = Object.create(null)
this.fieldTermFrequencies = {}
this.fieldLengths = {}
this.tokenizer = lunr.tokenizer
this.pipeline = new lunr.Pipeline
this.searchPipeline = new lunr.Pipeline
this.documentCount = 0
this._b = 0.75
this._k1 = 1.2
this.termIndex = 0
this.metadataWhitelist = []
}
/**
* Sets the document field used as the document reference. Every document must have this field.
* The type of this field in the document should be a string, if it is not a string it will be
* coerced into a string by calling toString.
*
* The default ref is 'id'.
*
* The ref should _not_ be changed during indexing, it should be set before any documents are
* added to the index. Changing it during indexing can lead to inconsistent results.
*
* @param {string} ref - The name of the reference field in the document.
*/
lunr.Builder.prototype.ref = function (ref) {
this._ref = ref
}
/**
* Adds a field to the list of document fields that will be indexed. Every document being
* indexed should have this field. Null values for this field in indexed documents will
* not cause errors but will limit the chance of that document being retrieved by searches.
*
* All fields should be added before adding documents to the index. Adding fields after
* a document has been indexed will have no effect on already indexed documents.
*
* @param {string} field - The name of a field to index in all documents.
*/
lunr.Builder.prototype.field = function (field) {
this._fields.push(field)
}
/**
* A parameter to tune the amount of field length normalisation that is applied when
* calculating relevance scores. A value of 0 will completely disable any normalisation
* and a value of 1 will fully normalise field lengths. The default is 0.75. Values of b
* will be clamped to the range 0 - 1.
*
* @param {number} number - The value to set for this tuning parameter.
*/
lunr.Builder.prototype.b = function (number) {
if (number < 0) {
this._b = 0
} else if (number > 1) {
this._b = 1
} else {
this._b = number
}
}
/**
* A parameter that controls the speed at which a rise in term frequency results in term
* frequency saturation. The default value is 1.2. Setting this to a higher value will give
* slower saturation levels, a lower value will result in quicker saturation.
*
* @param {number} number - The value to set for this tuning parameter.
*/
lunr.Builder.prototype.k1 = function (number) {
this._k1 = number
}
/**
* Adds a document to the index.
*
* Before adding fields to the index the index should have been fully setup, with the document
* ref and all fields to index already having been specified.
*
* The document must have a field name as specified by the ref (by default this is 'id') and
* it should have all fields defined for indexing, though null or undefined values will not
* cause errors.
*
* @param {object} doc - The document to add to the index.
*/
lunr.Builder.prototype.add = function (doc) {
var docRef = doc[this._ref]
this.documentCount += 1
for (var i = 0; i < this._fields.length; i++) {
var fieldName = this._fields[i],
field = doc[fieldName],
tokens = this.tokenizer(field),
terms = this.pipeline.run(tokens),
fieldRef = new lunr.FieldRef (docRef, fieldName),
fieldTerms = Object.create(null)
this.fieldTermFrequencies[fieldRef] = fieldTerms
this.fieldLengths[fieldRef] = 0
// store the length of this field for this document
this.fieldLengths[fieldRef] += terms.length
// calculate term frequencies for this field
for (var j = 0; j < terms.length; j++) {
var term = terms[j]
if (fieldTerms[term] == undefined) {
fieldTerms[term] = 0
}
fieldTerms[term] += 1
// add to inverted index
// create an initial posting if one doesn't exist
if (this.invertedIndex[term] == undefined) {
var posting = Object.create(null)
posting["_index"] = this.termIndex
this.termIndex += 1
for (var k = 0; k < this._fields.length; k++) {
posting[this._fields[k]] = Object.create(null)
}
this.invertedIndex[term] = posting
}
// add an entry for this term/fieldName/docRef to the invertedIndex
if (this.invertedIndex[term][fieldName][docRef] == undefined) {
this.invertedIndex[term][fieldName][docRef] = Object.create(null)
}
// store all whitelisted metadata about this token in the
// inverted index
for (var l = 0; l < this.metadataWhitelist.length; l++) {
var metadataKey = this.metadataWhitelist[l],
metadata = term.metadata[metadataKey]
if (this.invertedIndex[term][fieldName][docRef][metadataKey] == undefined) {
this.invertedIndex[term][fieldName][docRef][metadataKey] = []
}
this.invertedIndex[term][fieldName][docRef][metadataKey].push(metadata)
}
}
}
}
/**
* Calculates the average document length for this index
*
* @private
*/
lunr.Builder.prototype.calculateAverageFieldLengths = function () {
var fieldRefs = Object.keys(this.fieldLengths),
numberOfFields = fieldRefs.length,
accumulator = {},
documentsWithField = {}
for (var i = 0; i < numberOfFields; i++) {
var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),
field = fieldRef.fieldName
documentsWithField[field] || (documentsWithField[field] = 0)
documentsWithField[field] += 1
accumulator[field] || (accumulator[field] = 0)
accumulator[field] += this.fieldLengths[fieldRef]
}
for (var i = 0; i < this._fields.length; i++) {
var field = this._fields[i]
accumulator[field] = accumulator[field] / documentsWithField[field]
}
this.averageFieldLength = accumulator
}
/**
* Builds a vector space model of every document using lunr.Vector
*
* @private
*/
lunr.Builder.prototype.createFieldVectors = function () {
var fieldVectors = {},
fieldRefs = Object.keys(this.fieldTermFrequencies),
fieldRefsLength = fieldRefs.length
for (var i = 0; i < fieldRefsLength; i++) {
var fieldRef = lunr.FieldRef.fromString(fieldRefs[i]),
field = fieldRef.fieldName,
fieldLength = this.fieldLengths[fieldRef],
fieldVector = new lunr.Vector,
termFrequencies = this.fieldTermFrequencies[fieldRef],
terms = Object.keys(termFrequencies),
termsLength = terms.length
for (var j = 0; j < termsLength; j++) {
var term = terms[j],
tf = termFrequencies[term],
termIndex = this.invertedIndex[term]._index,
idf = lunr.idf(this.invertedIndex[term], this.documentCount),
score = idf * ((this._k1 + 1) * tf) / (this._k1 * (1 - this._b + this._b * (fieldLength / this.averageFieldLength[field])) + tf),
scoreWithPrecision = Math.round(score * 1000) / 1000
// Converts 1.23456789 to 1.234.
// Reducing the precision so that the vectors take up less
// space when serialised. Doing it now so that they behave
// the same before and after serialisation. Also, this is
// the fastest approach to reducing a number's precision in
// JavaScript.
fieldVector.insert(termIndex, scoreWithPrecision)
}
fieldVectors[fieldRef] = fieldVector
}
this.fieldVectors = fieldVectors
}
/**
* Creates a token set of all tokens in the index using lunr.TokenSet
*
* @private
*/
lunr.Builder.prototype.createTokenSet = function () {
this.tokenSet = lunr.TokenSet.fromArray(
Object.keys(this.invertedIndex).sort()
)
}
/**
* Builds the index, creating an instance of lunr.Index.
*
* This completes the indexing process and should only be called
* once all documents have been added to the index.
*
* @private
* @returns {lunr.Index}
*/
lunr.Builder.prototype.build = function () {
this.calculateAverageFieldLengths()
this.createFieldVectors()
this.createTokenSet()
return new lunr.Index({
invertedIndex: this.invertedIndex,
fieldVectors: this.fieldVectors,
tokenSet: this.tokenSet,
fields: this._fields,
pipeline: this.searchPipeline
})
}
/**
* Applies a plugin to the index builder.
*
* A plugin is a function that is called with the index builder as its context.
* Plugins can be used to customise or extend the behaviour of the index
* in some way. A plugin is just a function, that encapsulated the custom
* behaviour that should be applied when building the index.
*
* The plugin function will be called with the index builder as its argument, additional
* arguments can also be passed when calling use. The function will be called
* with the index builder as its context.
*
* @param {Function} plugin The plugin to apply.
*/
lunr.Builder.prototype.use = function (fn) {
var args = Array.prototype.slice.call(arguments, 1)
args.unshift(this)
fn.apply(this, args)
}
/**
* Contains and collects metadata about a matching document.
* A single instance of lunr.MatchData is returned as part of every
* lunr.Index~Result.
*
* @constructor
* @param {string} term - The term this match data is associated with
* @param {string} field - The field in which the term was found
* @param {object} metadata - The metadata recorded about this term in this field
* @property {object} metadata - A cloned collection of metadata associated with this document.
* @see {@link lunr.Index~Result}
*/
lunr.MatchData = function (term, field, metadata) {
var clonedMetadata = Object.create(null),
metadataKeys = Object.keys(metadata)
// Cloning the metadata to prevent the original
// being mutated during match data combination.
// Metadata is kept in an array within the inverted
// index so cloning the data can be done with
// Array#slice
for (var i = 0; i < metadataKeys.length; i++) {
var key = metadataKeys[i]
clonedMetadata[key] = metadata[key].slice()
}
this.metadata = Object.create(null)
this.metadata[term] = Object.create(null)
this.metadata[term][field] = clonedMetadata
}
/**
* An instance of lunr.MatchData will be created for every term that matches a
* document. However only one instance is required in a lunr.Index~Result. This
* method combines metadata from another instance of lunr.MatchData with this
* objects metadata.
*
* @param {lunr.MatchData} otherMatchData - Another instance of match data to merge with this one.
* @see {@link lunr.Index~Result}
*/
lunr.MatchData.prototype.combine = function (otherMatchData) {
var terms = Object.keys(otherMatchData.metadata)
for (var i = 0; i < terms.length; i++) {
var term = terms[i],
fields = Object.keys(otherMatchData.metadata[term])
if (this.metadata[term] == undefined) {
this.metadata[term] = Object.create(null)
}
for (var j = 0; j < fields.length; j++) {
var field = fields[j],
keys = Object.keys(otherMatchData.metadata[term][field])
if (this.metadata[term][field] == undefined) {
this.metadata[term][field] = Object.create(null)
}
for (var k = 0; k < keys.length; k++) {
var key = keys[k]
if (this.metadata[term][field][key] == undefined) {
this.metadata[term][field][key] = otherMatchData.metadata[term][field][key]
} else {
this.metadata[term][field][key] = this.metadata[term][field][key].concat(otherMatchData.metadata[term][field][key])
}
}
}
}
}
/**
* A lunr.Query provides a programmatic way of defining queries to be performed
* against a {@link lunr.Index}.
*
* Prefer constructing a lunr.Query using the {@link lunr.Index#query} method
* so the query object is pre-initialized with the right index fields.
*
* @constructor
* @property {lunr.Query~Clause[]} clauses - An array of query clauses.
* @property {string[]} allFields - An array of all available fields in a lunr.Index.
*/
lunr.Query = function (allFields) {
this.clauses = []
this.allFields = allFields
}
/**
* Constants for indicating what kind of automatic wildcard insertion will be used when constructing a query clause.
*
* This allows wildcards to be added to the beginning and end of a term without having to manually do any string
* concatenation.
*
* The wildcard constants can be bitwise combined to select both leading and trailing wildcards.
*
* @constant
* @default
* @property {number} wildcard.NONE - The term will have no wildcards inserted, this is the default behaviour
* @property {number} wildcard.LEADING - Prepend the term with a wildcard, unless a leading wildcard already exists
* @property {number} wildcard.TRAILING - Append a wildcard to the term, unless a trailing wildcard already exists
* @see lunr.Query~Clause
* @see lunr.Query#clause
* @see lunr.Query#term
* @example <caption>query term with trailing wildcard</caption>
* query.term('foo', { wildcard: lunr.Query.wildcard.TRAILING })
* @example <caption>query term with leading and trailing wildcard</caption>
* query.term('foo', {
* wildcard: lunr.Query.wildcard.LEADING | lunr.Query.wildcard.TRAILING
* })
*/
lunr.Query.wildcard = new String ("*")
lunr.Query.wildcard.NONE = 0
lunr.Query.wildcard.LEADING = 1
lunr.Query.wildcard.TRAILING = 2
/**
* A single clause in a {@link lunr.Query} contains a term and details on how to
* match that term against a {@link lunr.Index}.
*
* @typedef {Object} lunr.Query~Clause
* @property {string[]} fields - The fields in an index this clause should be matched against.
* @property {number} [boost=1] - Any boost that should be applied when matching this clause.
* @property {number} [editDistance] - Whether the term should have fuzzy matching applied, and how fuzzy the match should be.
* @property {boolean} [usePipeline] - Whether the term should be passed through the search pipeline.
* @property {number} [wildcard=0] - Whether the term should have wildcards appended or prepended.
*/
/**
* Adds a {@link lunr.Query~Clause} to this query.
*
* Unless the clause contains the fields to be matched all fields will be matched. In addition
* a default boost of 1 is applied to the clause.
*
* @param {lunr.Query~Clause} clause - The clause to add to this query.
* @see lunr.Query~Clause
* @returns {lunr.Query}
*/
lunr.Query.prototype.clause = function (clause) {
if (!('fields' in clause)) {
clause.fields = this.allFields
}
if (!('boost' in clause)) {
clause.boost = 1
}
if (!('usePipeline' in clause)) {
clause.usePipeline = true
}
if (!('wildcard' in clause)) {
clause.wildcard = lunr.Query.wildcard.NONE
}
if ((clause.wildcard & lunr.Query.wildcard.LEADING) && (clause.term.charAt(0) != lunr.Query.wildcard)) {
clause.term = "*" + clause.term
}
if ((clause.wildcard & lunr.Query.wildcard.TRAILING) && (clause.term.slice(-1) != lunr.Query.wildcard)) {
clause.term = "" + clause.term + "*"
}
this.clauses.push(clause)
return this
}
/**
* Adds a term to the current query, under the covers this will create a {@link lunr.Query~Clause}
* to the list of clauses that make up this query.
*
* @param {string} term - The term to add to the query.
* @param {Object} [options] - Any additional properties to add to the query clause.
* @returns {lunr.Query}
* @see lunr.Query#clause
* @see lunr.Query~Clause
* @example <caption>adding a single term to a query</caption>
* query.term("foo")
* @example <caption>adding a single term to a query and specifying search fields, term boost and automatic trailing wildcard</caption>
* query.term("foo", {
* fields: ["title"],
* boost: 10,
* wildcard: lunr.Query.wildcard.TRAILING
* })
*/
lunr.Query.prototype.term = function (term, options) {
var clause = options || {}
clause.term = term
this.clause(clause)
return this
}
lunr.QueryParseError = function (message, start, end) {
this.name = "QueryParseError"
this.message = message
this.start = start
this.end = end
}
lunr.QueryParseError.prototype = new Error
lunr.QueryLexer = function (str) {
this.lexemes = []
this.str = str
this.length = str.length
this.pos = 0
this.start = 0
this.escapeCharPositions = []
}
lunr.QueryLexer.prototype.run = function () {
var state = lunr.QueryLexer.lexText
while (state) {
state = state(this)
}
}
lunr.QueryLexer.prototype.sliceString = function () {
var subSlices = [],
sliceStart = this.start,
sliceEnd = this.pos
for (var i = 0; i < this.escapeCharPositions.length; i++) {
sliceEnd = this.escapeCharPositions[i]
subSlices.push(this.str.slice(sliceStart, sliceEnd))
sliceStart = sliceEnd + 1
}
subSlices.push(this.str.slice(sliceStart, this.pos))
this.escapeCharPositions.length = 0
return subSlices.join('')
}
lunr.QueryLexer.prototype.emit = function (type) {
this.lexemes.push({
type: type,
str: this.sliceString(),
start: this.start,
end: this.pos
})
this.start = this.pos
}
lunr.QueryLexer.prototype.escapeCharacter = function () {
this.escapeCharPositions.push(this.pos - 1)
this.pos += 1
}
lunr.QueryLexer.prototype.next = function () {
if (this.pos >= this.length) {
return lunr.QueryLexer.EOS
}
var char = this.str.charAt(this.pos)
this.pos += 1
return char
}
lunr.QueryLexer.prototype.width = function () {
return this.pos - this.start
}
lunr.QueryLexer.prototype.ignore = function () {
if (this.start == this.pos) {
this.pos += 1
}
this.start = this.pos
}
lunr.QueryLexer.prototype.backup = function () {
this.pos -= 1
}
lunr.QueryLexer.prototype.acceptDigitRun = function () {
var char, charCode
do {
char = this.next()
charCode = char.charCodeAt(0)
} while (charCode > 47 && charCode < 58)
if (char != lunr.QueryLexer.EOS) {
this.backup()
}
}
lunr.QueryLexer.prototype.more = function () {
return this.pos < this.length
}
lunr.QueryLexer.EOS = 'EOS'
lunr.QueryLexer.FIELD = 'FIELD'
lunr.QueryLexer.TERM = 'TERM'
lunr.QueryLexer.EDIT_DISTANCE = 'EDIT_DISTANCE'
lunr.QueryLexer.BOOST = 'BOOST'
lunr.QueryLexer.lexField = function (lexer) {
lexer.backup()
lexer.emit(lunr.QueryLexer.FIELD)
lexer.ignore()
return lunr.QueryLexer.lexText
}
lunr.QueryLexer.lexTerm = function (lexer) {
if (lexer.width() > 1) {
lexer.backup()
lexer.emit(lunr.QueryLexer.TERM)
}
lexer.ignore()
if (lexer.more()) {
return lunr.QueryLexer.lexText
}
}
lunr.QueryLexer.lexEditDistance = function (lexer) {
lexer.ignore()
lexer.acceptDigitRun()
lexer.emit(lunr.QueryLexer.EDIT_DISTANCE)
return lunr.QueryLexer.lexText
}
lunr.QueryLexer.lexBoost = function (lexer) {
lexer.ignore()
lexer.acceptDigitRun()
lexer.emit(lunr.QueryLexer.BOOST)
return lunr.QueryLexer.lexText
}
lunr.QueryLexer.lexEOS = function (lexer) {
if (lexer.width() > 0) {
lexer.emit(lunr.QueryLexer.TERM)
}
}
// This matches the separator used when tokenising fields
// within a document. These should match otherwise it is
// not possible to search for some tokens within a document.
//
// It is possible for the user to change the separator on the
// tokenizer so it _might_ clash with any other of the special
// characters already used within the search string, e.g. :.
//
// This means that it is possible to change the separator in
// such a way that makes some words unsearchable using a search
// string.
lunr.QueryLexer.termSeparator = lunr.tokenizer.separator
lunr.QueryLexer.lexText = function (lexer) {
while (true) {
var char = lexer.next()
if (char == lunr.QueryLexer.EOS) {
return lunr.QueryLexer.lexEOS
}
// Escape character is '\'
if (char.charCodeAt(0) == 92) {
lexer.escapeCharacter()
continue
}
if (char == ":") {
return lunr.QueryLexer.lexField
}
if (char == "~") {
lexer.backup()
if (lexer.width() > 0) {
lexer.emit(lunr.QueryLexer.TERM)
}
return lunr.QueryLexer.lexEditDistance
}
if (char == "^") {
lexer.backup()
if (lexer.width() > 0) {
lexer.emit(lunr.QueryLexer.TERM)
}
return lunr.QueryLexer.lexBoost
}
if (char.match(lunr.QueryLexer.termSeparator)) {
return lunr.QueryLexer.lexTerm
}
}
}
lunr.QueryParser = function (str, query) {
this.lexer = new lunr.QueryLexer (str)
this.query = query
this.currentClause = {}
this.lexemeIdx = 0
}
lunr.QueryParser.prototype.parse = function () {
this.lexer.run()
this.lexemes = this.lexer.lexemes
var state = lunr.QueryParser.parseFieldOrTerm
while (state) {
state = state(this)
}
return this.query
}
lunr.QueryParser.prototype.peekLexeme = function () {
return this.lexemes[this.lexemeIdx]
}
lunr.QueryParser.prototype.consumeLexeme = function () {
var lexeme = this.peekLexeme()
this.lexemeIdx += 1
return lexeme
}
lunr.QueryParser.prototype.nextClause = function () {
var completedClause = this.currentClause
this.query.clause(completedClause)
this.currentClause = {}
}
lunr.QueryParser.parseFieldOrTerm = function (parser) {
var lexeme = parser.peekLexeme()
if (lexeme == undefined) {
return
}
switch (lexeme.type) {
case lunr.QueryLexer.FIELD:
return lunr.QueryParser.parseField
case lunr.QueryLexer.TERM:
return lunr.QueryParser.parseTerm
default:
var errorMessage = "expected either a field or a term, found " + lexeme.type
if (lexeme.str.length >= 1) {
errorMessage += " with value '" + lexeme.str + "'"
}
throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)
}
}
lunr.QueryParser.parseField = function (parser) {
var lexeme = parser.consumeLexeme()
if (lexeme == undefined) {
return
}
if (parser.query.allFields.indexOf(lexeme.str) == -1) {
var possibleFields = parser.query.allFields.map(function (f) { return "'" + f + "'" }).join(', '),
errorMessage = "unrecognised field '" + lexeme.str + "', possible fields: " + possibleFields
throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)
}
parser.currentClause.fields = [lexeme.str]
var nextLexeme = parser.peekLexeme()
if (nextLexeme == undefined) {
var errorMessage = "expecting term, found nothing"
throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)
}
switch (nextLexeme.type) {
case lunr.QueryLexer.TERM:
return lunr.QueryParser.parseTerm
default:
var errorMessage = "expecting term, found '" + nextLexeme.type + "'"
throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)
}
}
lunr.QueryParser.parseTerm = function (parser) {
var lexeme = parser.consumeLexeme()
if (lexeme == undefined) {
return
}
parser.currentClause.term = lexeme.str.toLowerCase()
if (lexeme.str.indexOf("*") != -1) {
parser.currentClause.usePipeline = false
}
var nextLexeme = parser.peekLexeme()
if (nextLexeme == undefined) {
parser.nextClause()
return
}
switch (nextLexeme.type) {
case lunr.QueryLexer.TERM:
parser.nextClause()
return lunr.QueryParser.parseTerm
case lunr.QueryLexer.FIELD:
parser.nextClause()
return lunr.QueryParser.parseField
case lunr.QueryLexer.EDIT_DISTANCE:
return lunr.QueryParser.parseEditDistance
case lunr.QueryLexer.BOOST:
return lunr.QueryParser.parseBoost
default:
var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'"
throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)
}
}
lunr.QueryParser.parseEditDistance = function (parser) {
var lexeme = parser.consumeLexeme()
if (lexeme == undefined) {
return
}
var editDistance = parseInt(lexeme.str, 10)
if (isNaN(editDistance)) {
var errorMessage = "edit distance must be numeric"
throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)
}
parser.currentClause.editDistance = editDistance
var nextLexeme = parser.peekLexeme()
if (nextLexeme == undefined) {
parser.nextClause()
return
}
switch (nextLexeme.type) {
case lunr.QueryLexer.TERM:
parser.nextClause()
return lunr.QueryParser.parseTerm
case lunr.QueryLexer.FIELD:
parser.nextClause()
return lunr.QueryParser.parseField
case lunr.QueryLexer.EDIT_DISTANCE:
return lunr.QueryParser.parseEditDistance
case lunr.QueryLexer.BOOST:
return lunr.QueryParser.parseBoost
default:
var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'"
throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)
}
}
lunr.QueryParser.parseBoost = function (parser) {
var lexeme = parser.consumeLexeme()
if (lexeme == undefined) {
return
}
var boost = parseInt(lexeme.str, 10)
if (isNaN(boost)) {
var errorMessage = "boost must be numeric"
throw new lunr.QueryParseError (errorMessage, lexeme.start, lexeme.end)
}
parser.currentClause.boost = boost
var nextLexeme = parser.peekLexeme()
if (nextLexeme == undefined) {
parser.nextClause()
return
}
switch (nextLexeme.type) {
case lunr.QueryLexer.TERM:
parser.nextClause()
return lunr.QueryParser.parseTerm
case lunr.QueryLexer.FIELD:
parser.nextClause()
return lunr.QueryParser.parseField
case lunr.QueryLexer.EDIT_DISTANCE:
return lunr.QueryParser.parseEditDistance
case lunr.QueryLexer.BOOST:
return lunr.QueryParser.parseBoost
default:
var errorMessage = "Unexpected lexeme type '" + nextLexeme.type + "'"
throw new lunr.QueryParseError (errorMessage, nextLexeme.start, nextLexeme.end)
}
}
/**
* export the module via AMD, CommonJS or as a browser global
* Export code from path_to_url
*/
;(function (root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(factory)
} else if (typeof exports === 'object') {
/**
* Node. Does not work with strict CommonJS, but
* only CommonJS-like enviroments that support module.exports,
* like Node.
*/
module.exports = factory()
} else {
// Browser globals (root is window)
root.lunr = factory()
}
}(this, function () {
/**
* Just return a value to define the module export.
* This example returns an object, but the module
* can return a function as the exported value.
*/
return lunr
}))
})();
```
|
/content/code_sandbox/docs/styles/lunr.js
|
javascript
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 21,143
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DynamicClassFactory
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DynamicClassFactory
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.DynamicClassFactory">
<h1 id="System_Linq_Dynamic_Core_DynamicClassFactory" data-uid="System.Linq.Dynamic.Core.DynamicClassFactory" class="text-break">Class DynamicClassFactory
</h1>
<div class="markdown level0 summary"><p>A factory to create dynamic classes, based on <a href="path_to_url">path_to_url
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">DynamicClassFactory</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_DynamicClassFactory_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static class DynamicClassFactory</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L77">View Source</a>
</span>
<a id=your_sha256_hasherType_" data-uid="System.Linq.Dynamic.Core.DynamicClassFactory.CreateGenericComparerType*"></a>
<h4 id=your_sha256_hasherType_System_Type_System_Type_" data-uid="System.Linq.Dynamic.Core.DynamicClassFactory.CreateGenericComparerType(System.Type,System.Type)">CreateGenericComparerType(Type, Type)</h4>
<div class="markdown level1 summary"><p>Create a GenericComparerType based on the GenericType and an instance of a <span class="xref">System.Collections.IComparer</span>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Type CreateGenericComparerType(Type comparerGenericType, Type comparerType)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">comparerGenericType</span></td>
<td><p>The GenericType</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">comparerType</span></td>
<td><p>The <span class="xref">System.Collections.IComparer</span> instance</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>Type</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L158">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicClassFactory_CreateType_" data-uid="System.Linq.Dynamic.Core.DynamicClassFactory.CreateType*"></a>
<h4 id=your_sha256_hashyour_sha256_hashy__System_Boolean_" data-uid="System.Linq.Dynamic.Core.DynamicClassFactory.CreateType(System.Collections.Generic.IList{System.Linq.Dynamic.Core.DynamicProperty},System.Boolean)">CreateType(IList<DynamicProperty>, Boolean)</h4>
<div class="markdown level1 summary"><p>The CreateType method creates a new data class with a given set of public properties and returns the System.Type object for the newly created class. If a data class with an identical sequence of properties has already been created, the System.Type object for this class is returned.<br>
Data classes implement private instance variables and read/write property accessors for the specified properties.Data classes also override the Equals and GetHashCode members to implement by-value equality.
Data classes are created in an in-memory assembly in the current application domain. All data classes inherit from <a class="xref" href="System.Linq.Dynamic.Core.DynamicClass.html">DynamicClass</a> and are given automatically generated names that should be considered private (the names will be unique within the application domain but not across multiple invocations of the application). Note that once created, a data class stays in memory for the lifetime of the current application domain. There is currently no way to unload a dynamically created data class.
The dynamic expression parser uses the CreateClass methods to generate classes from data object initializers. This feature in turn is often used with the dynamic Select method to create projections.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Type CreateType(IList<DynamicProperty> properties, bool createParameterCtor = true)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IList</span><<a class="xref" href="System.Linq.Dynamic.Core.DynamicProperty.html">DynamicProperty</a>></td>
<td><span class="parametername">properties</span></td>
<td><p>The DynamicProperties</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>Create a constructor with parameters. Default set to true. Note that for Linq-to-Database objects, this needs to be set to false.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>Type</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashy__System_Boolean__examples">Examples</h5>
<pre><code>DynamicProperty[] props = new DynamicProperty[] { new DynamicProperty("Name", typeof(string)), new DynamicProperty("Birthday", typeof(DateTime)) };
Type type = DynamicClassFactory.CreateType(props);
DynamicClass dynamicClass = (DynamicClass) Activator.CreateInstance(type)!;
dynamicClass.SetDynamicPropertyValue("Name", "Albert");
dynamicClass.SetDynamicPropertyValue("Birthday", new DateTime(1879, 3, 14));</code></pre>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L18" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.DynamicClassFactory.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,153
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DynamicClass
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DynamicClass
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.DynamicClass">
<h1 id="System_Linq_Dynamic_Core_DynamicClass" data-uid="System.Linq.Dynamic.Core.DynamicClass" class="text-break">Class DynamicClass
</h1>
<div class="markdown level0 summary"><p>Provides a base class for dynamic objects for Net 3.5</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">DynamicClass</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_DynamicClass_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public abstract class DynamicClass</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L28">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicClass_GetDynamicPropertyValue_" data-uid="System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue*"></a>
<h4 id=your_sha256_hashstem_String_" data-uid="System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue(System.String)">GetDynamicPropertyValue(String)</h4>
<div class="markdown level1 summary"><p>Gets the dynamic property value by name.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public object GetDynamicPropertyValue(string propertyName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">propertyName</span></td>
<td><p>Name of the property.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>value</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L15">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicClass_GetDynamicPropertyValue_" data-uid="System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue*"></a>
<h4 id=your_sha256_hash_System_String_" data-uid="System.Linq.Dynamic.Core.DynamicClass.GetDynamicPropertyValue``1(System.String)">GetDynamicPropertyValue<T>(String)</h4>
<div class="markdown level1 summary"><p>Gets the dynamic property by name.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public T GetDynamicPropertyValue<T>(string propertyName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">propertyName</span></td>
<td><p>Name of the property.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">T</span></td>
<td><p>T</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T</span></td>
<td><p>The type.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L52">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicClass_SetDynamicPropertyValue_" data-uid="System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue*"></a>
<h4 id=your_sha256_hashstem_String_System_Object_" data-uid="System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue(System.String,System.Object)">SetDynamicPropertyValue(String, Object)</h4>
<div class="markdown level1 summary"><p>Sets the dynamic property value by name.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void SetDynamicPropertyValue(string propertyName, object value)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">propertyName</span></td>
<td><p>Name of the property.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span></td>
<td><span class="parametername">value</span></td>
<td><p>The value.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L39">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicClass_SetDynamicPropertyValue_" data-uid="System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue*"></a>
<h4 id=your_sha256_hash_System_String___0_" data-uid="System.Linq.Dynamic.Core.DynamicClass.SetDynamicPropertyValue``1(System.String,``0)">SetDynamicPropertyValue<T>(String, T)</h4>
<div class="markdown level1 summary"><p>Sets the dynamic property value by name.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void SetDynamicPropertyValue<T>(string propertyName, T value)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">propertyName</span></td>
<td><p>Name of the property.</p>
</td>
</tr>
<tr>
<td><span class="xref">T</span></td>
<td><span class="parametername">value</span></td>
<td><p>The value.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T</span></td>
<td><p>The type.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L7" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.DynamicClass.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,628
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class NumberParser
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class NumberParser
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser">
<h1 id="System_Linq_Dynamic_Core_Parser_NumberParser" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser" class="text-break">Class NumberParser
</h1>
<div class="markdown level0 summary"><p>NumberParser</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">NumberParser</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Parser.html">System.Linq.Dynamic.Core.Parser</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Parser_NumberParser_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class NumberParser</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L27">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_NumberParser__ctor_" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.#ctor*"></a>
<h4 id=your_sha256_hashynamic_Core_ParsingConfig_" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.#ctor(System.Linq.Dynamic.Core.ParsingConfig)">NumberParser(ParsingConfig)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="System.Linq.Dynamic.Core.Parser.NumberParser.html">NumberParser</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public NumberParser(ParsingConfig config)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The ParsingConfig.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L38">View Source</a>
</span>
<a id=your_sha256_hash_" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.ParseIntegerLiteral*"></a>
<h4 id=your_sha256_hash_System_Int32_System_String_" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.ParseIntegerLiteral(System.Int32,System.String)">ParseIntegerLiteral(Int32, String)</h4>
<div class="markdown level1 summary"><p>Tries to parse the text into a IntegerLiteral ConstantExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Expression ParseIntegerLiteral(int tokenPosition, string text)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">tokenPosition</span></td>
<td><p>The current token position (needed for error reporting).</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">text</span></td>
<td><p>The text.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L215">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_NumberParser_ParseNumber_" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.ParseNumber*"></a>
<h4 id=your_sha256_hashString_System_Type_" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.ParseNumber(System.String,System.Type)">ParseNumber(String, Type)</h4>
<div class="markdown level1 summary"><p>Parses the number (text) into the specified type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public object ParseNumber(string text, Type type)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">text</span></td>
<td><p>The text.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">type</span></td>
<td><p>The type.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L162">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_NumberParser_ParseRealLiteral_" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.ParseRealLiteral*"></a>
<h4 id=your_sha256_hashstem_String_System_Char_System_Boolean_" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.ParseRealLiteral(System.String,System.Char,System.Boolean)">ParseRealLiteral(String, Char, Boolean)</h4>
<div class="markdown level1 summary"><p>Parse the text into a Real ConstantExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Expression ParseRealLiteral(string text, char qualifier, bool stripQualifier)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">text</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Char</span></td>
<td><span class="parametername">qualifier</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">stripQualifier</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L204">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_NumberParser_TryParseNumber_" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.TryParseNumber*"></a>
<h4 id=your_sha256_hashem_String_System_Type_System_Object__" data-uid="System.Linq.Dynamic.Core.Parser.NumberParser.TryParseNumber(System.String,System.Type,System.Object@)">TryParseNumber(String, Type, out Object)</h4>
<div class="markdown level1 summary"><p>Tries to parse the number (text) into the specified type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool TryParseNumber(string text, Type type, out object result)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">text</span></td>
<td><p>The text.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">type</span></td>
<td><p>The type.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span></td>
<td><span class="parametername">result</span></td>
<td><p>The result.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L12" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Parser.NumberParser.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 4,257
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace System.Linq.Dynamic.Core.CustomTypeProviders
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace System.Linq.Dynamic.Core.CustomTypeProviders
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders">
<h1 id="System_Linq_Dynamic_Core_CustomTypeProviders" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders" class="text-break">Namespace System.Linq.Dynamic.Core.CustomTypeProviders
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="classes">Classes
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html">AbstractDynamicLinqCustomTypeProvider</a></h4>
<section><p>The abstract DynamicLinqCustomTypeProvider which is used by the DefaultDynamicLinqCustomTypeProvider and can be used by a custom TypeProvider like in .NET Core.</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html">DefaultDynamicLinqCustomTypeProvider</a></h4>
<section><p>The default implementation for <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html">DefaultDynamicLinqCustomTypeProvider</a>.</p>
<p>Scans the current AppDomain for all types marked with <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute.html">DynamicLinqTypeAttribute</a>, and adds them as custom Dynamic Link types.</p>
<p>Also provides functionality to resolve a Type in the current Application Domain.</p>
<p>This class is used as default for full .NET Framework and .NET Core App 2.x and higher.</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute.html">DynamicLinqTypeAttribute</a></h4>
<section><p>Indicates to Dynamic Linq to consider the Type as a valid dynamic linq type.</p>
</section>
<h3 id="interfaces">Interfaces
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider.html">IDynamicLinkCustomTypeProvider</a></h4>
<section><p>Interface for providing functionality to find custom types for or resolve any type.
Note that this interface will be marked obsolete in the next version. Use <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html">IDynamicLinqCustomTypeProvider</a> instead.</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html">IDynamicLinqCustomTypeProvider</a></h4>
<section><p>Interface for providing functionality to find custom types for or resolve any type.</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.CustomTypeProviders.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,697
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class ExpressionPromoter
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class ExpressionPromoter
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionPromoter">
<h1 id="System_Linq_Dynamic_Core_Parser_ExpressionPromoter" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionPromoter" class="text-break">Class ExpressionPromoter
</h1>
<div class="markdown level0 summary"><p>ExpressionPromoter</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">ExpressionPromoter</span></div>
</div>
<div class="implements">
<h5>Implements</h5>
<div><a class="xref" href="System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html">IExpressionPromoter</a></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Parser.html">System.Linq.Dynamic.Core.Parser</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Parser_ExpressionPromoter_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class ExpressionPromoter : IExpressionPromoter</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L18">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_ExpressionPromoter__ctor_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionPromoter.#ctor*"></a>
<h4 id=your_sha256_hashLinq_Dynamic_Core_ParsingConfig_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionPromoter.#ctor(System.Linq.Dynamic.Core.ParsingConfig)">ExpressionPromoter(ParsingConfig)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="System.Linq.Dynamic.Core.Parser.ExpressionPromoter.html">ExpressionPromoter</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ExpressionPromoter(ParsingConfig config)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The ParsingConfig.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L25">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_ExpressionPromoter_Promote_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionPromoter.Promote*"></a>
<h4 id=your_sha256_hashyour_sha256_hashBoolean_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionPromoter.Promote(System.Linq.Expressions.Expression,System.Type,System.Boolean,System.Boolean)">Promote(Expression, Type, Boolean, Boolean)</h4>
<div class="markdown level1 summary"><p>Promote an expression</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public virtual Expression Promote(Expression expr, Type type, bool exact, bool convertExpr)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span></td>
<td><span class="parametername">expr</span></td>
<td><p>Source expression</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">type</span></td>
<td><p>Destination data type to promote</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">exact</span></td>
<td><p>If the match must be exact</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">convertExpr</span></td>
<td><p>Convert expression</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span></td>
<td><p>The promoted <span class="xref">System.Linq.Expressions.Expression</span> or null.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html">IExpressionPromoter</a>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L9" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Parser.ExpressionPromoter.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,829
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class PagedResult
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class PagedResult
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.PagedResult">
<h1 id="System_Linq_Dynamic_Core_PagedResult" data-uid="System.Linq.Dynamic.Core.PagedResult" class="text-break">Class PagedResult
</h1>
<div class="markdown level0 summary"><p>PagedResult</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">PagedResult</span></div>
<div class="level2"><a class="xref" href="System.Linq.Dynamic.Core.PagedResult-1.html">PagedResult<TSource></a></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_PagedResult_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class PagedResult</code></pre>
</div>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L23">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_PagedResult_CurrentPage_" data-uid="System.Linq.Dynamic.Core.PagedResult.CurrentPage*"></a>
<h4 id="System_Linq_Dynamic_Core_PagedResult_CurrentPage" data-uid="System.Linq.Dynamic.Core.PagedResult.CurrentPage">CurrentPage</h4>
<div class="markdown level1 summary"><p>Gets or sets the current page.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public int CurrentPage { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><p>The current page.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L31">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_PagedResult_PageCount_" data-uid="System.Linq.Dynamic.Core.PagedResult.PageCount*"></a>
<h4 id="System_Linq_Dynamic_Core_PagedResult_PageCount" data-uid="System.Linq.Dynamic.Core.PagedResult.PageCount">PageCount</h4>
<div class="markdown level1 summary"><p>Gets or sets the page count.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public int PageCount { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><p>The page count.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L39">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_PagedResult_PageSize_" data-uid="System.Linq.Dynamic.Core.PagedResult.PageSize*"></a>
<h4 id="System_Linq_Dynamic_Core_PagedResult_PageSize" data-uid="System.Linq.Dynamic.Core.PagedResult.PageSize">PageSize</h4>
<div class="markdown level1 summary"><p>Gets or sets the size of the page.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public int PageSize { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><p>The size of the page.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L15">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_PagedResult_Queryable_" data-uid="System.Linq.Dynamic.Core.PagedResult.Queryable*"></a>
<h4 id="System_Linq_Dynamic_Core_PagedResult_Queryable" data-uid="System.Linq.Dynamic.Core.PagedResult.Queryable">Queryable</h4>
<div class="markdown level1 summary"><p>Gets or sets the queryable.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IQueryable Queryable { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>The queryable.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L47">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_PagedResult_RowCount_" data-uid="System.Linq.Dynamic.Core.PagedResult.RowCount*"></a>
<h4 id="System_Linq_Dynamic_Core_PagedResult_RowCount" data-uid="System.Linq.Dynamic.Core.PagedResult.RowCount">RowCount</h4>
<div class="markdown level1 summary"><p>Gets or sets the row count.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public int RowCount { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><p>The row count.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L7" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.PagedResult.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,351
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DynamicExpressionParser
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DynamicExpressionParser
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser">
<h1 id="System_Linq_Dynamic_Core_DynamicExpressionParser" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser" class="text-break">Class DynamicExpressionParser
</h1>
<div class="markdown level0 summary"><p>Helper class to convert an expression into an LambdaExpression</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">DynamicExpressionParser</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_DynamicExpressionParser_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static class DynamicExpressionParser</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L453">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])">ParseLambda(Boolean, ParameterExpression[], Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(bool createParameterCtor, ParameterExpression[] parameters, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>A array from ParameterExpressions.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L186">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hash__" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Boolean,System.Type,System.Type,System.String,System.Object[])">ParseLambda(Boolean, Type, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(bool createParameterCtor, Type itType, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">itType</span></td>
<td><p>The main type from the dynamic class expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L95">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashm_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])">ParseLambda(ParsingConfig, Boolean, ParameterExpression[], Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(ParsingConfig parsingConfig, bool createParameterCtor, ParameterExpression[] parameters, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>A array from ParameterExpressions.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L23">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashystem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])">ParseLambda(ParsingConfig, Boolean, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(ParsingConfig parsingConfig, bool createParameterCtor, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L350">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashystem_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])">ParseLambda(ParsingConfig, Boolean, Type, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(ParsingConfig parsingConfig, bool createParameterCtor, Type itType, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">itType</span></td>
<td><p>The main type from the dynamic class expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L420">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashmeterExpression___System_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])">ParseLambda(ParsingConfig, ParameterExpression[], Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(ParsingConfig parsingConfig, ParameterExpression[] parameters, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>A array from ParameterExpressions.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L241">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashstem_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])">ParseLambda(ParsingConfig, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(ParsingConfig parsingConfig, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L313">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])">ParseLambda(ParsingConfig, Type, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(ParsingConfig parsingConfig, Type itType, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">itType</span></td>
<td><p>The main type from the dynamic class expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L388">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashring_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])">ParseLambda(ParameterExpression[], Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(ParameterExpression[] parameters, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>A array from ParameterExpressions.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L112">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashString_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])">ParseLambda(Type, ParsingConfig, Boolean, ParameterExpression[], Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(Type delegateType, ParsingConfig parsingConfig, bool createParameterCtor, ParameterExpression[] parameters, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>A array from ParameterExpressions.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L43">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashystem_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.String,System.Object[])">ParseLambda(Type, ParsingConfig, Boolean, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(Type delegateType, ParsingConfig parsingConfig, bool createParameterCtor, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L370">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashystem_Type_System_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Type,System.Type,System.String,System.Object[])">ParseLambda(Type, ParsingConfig, Boolean, Type, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(Type delegateType, ParsingConfig parsingConfig, bool createParameterCtor, Type itType, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">itType</span></td>
<td><p>The main type from the dynamic class expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L436">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashbject___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])">ParseLambda(Type, ParsingConfig, ParameterExpression[], Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(Type delegateType, ParsingConfig parsingConfig, ParameterExpression[] parameters, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>A array from ParameterExpressions.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L256">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])">ParseLambda(Type, ParsingConfig, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(Type delegateType, ParsingConfig parsingConfig, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L331">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashem_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.Type,System.String,System.Object[])">ParseLambda(Type, ParsingConfig, Type, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(Type delegateType, ParsingConfig parsingConfig, Type itType, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">itType</span></td>
<td><p>The main type from the dynamic class expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L403">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashpe_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Linq.Expressions.ParameterExpression[],System.Type,System.String,System.Object[])">ParseLambda(Type, ParameterExpression[], Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(Type delegateType, ParameterExpression[] parameters, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>A array from ParameterExpressions.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L271">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashtem_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.String,System.Object[])">ParseLambda(Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L296">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashtem_Type_System_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda(System.Type,System.Type,System.String,System.Object[])">ParseLambda(Type, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a LambdaExpression. (Also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.)</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static LambdaExpression ParseLambda(Type itType, Type resultType, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">itType</span></td>
<td><p>The main type from the dynamic class expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result. If not specified, it will be generated dynamically.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.LambdaExpression</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L152">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hash__" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])">ParseLambda<TResult>(ParsingConfig, Boolean, ParameterExpression[], String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a Typed Expression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static Expression<Func<TResult>> ParseLambda<TResult>(ParsingConfig parsingConfig, bool createParameterCtor, ParameterExpression[] parameters, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>A array from ParameterExpressions.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span><<span class="xref">System.Func</span><TResult>></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.Expression</span></p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L62">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashing_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])">ParseLambda<TResult>(ParsingConfig, Boolean, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a Typed Expression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static Expression<Func<TResult>> ParseLambda<TResult>(ParsingConfig parsingConfig, bool createParameterCtor, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span><<span class="xref">System.Func</span><TResult>></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.Expression</span></p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L169">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashstem_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.Linq.Expressions.ParameterExpression[],System.String,System.Object[])">ParseLambda<TResult>(Type, ParsingConfig, Boolean, ParameterExpression[], String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a Typed Expression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static Expression<Func<TResult>> ParseLambda<TResult>(Type delegateType, ParsingConfig parsingConfig, bool createParameterCtor, ParameterExpression[] parameters, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>A array from ParameterExpressions.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span><<span class="xref">System.Func</span><TResult>></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.Expression</span></p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L78">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashn_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``1(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])">ParseLambda<TResult>(Type, ParsingConfig, Boolean, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a Typed Expression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static Expression<Func<TResult>> ParseLambda<TResult>(Type delegateType, ParsingConfig parsingConfig, bool createParameterCtor, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span><<span class="xref">System.Func</span><TResult>></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.Expression</span></p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L205">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashing_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``2(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])">ParseLambda<T, TResult>(ParsingConfig, Boolean, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a Typed Expression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static Expression<Func<T, TResult>> ParseLambda<T, TResult>(ParsingConfig parsingConfig, bool createParameterCtor, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span><<span class="xref">System.Func</span><T, TResult>></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.Expression</span></p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T</span></td>
<td><p>The <code>it</code>-Type.</p>
</td>
</tr>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L224">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicExpressionParser_ParseLambda_" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda*"></a>
<h4 id=your_sha256_hashyour_sha256_hashn_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicExpressionParser.ParseLambda``2(System.Type,System.Linq.Dynamic.Core.ParsingConfig,System.Boolean,System.String,System.Object[])">ParseLambda<T, TResult>(Type, ParsingConfig, Boolean, String, Object[])</h4>
<div class="markdown level1 summary"><p>Parses an expression into a Typed Expression.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static Expression<Func<T, TResult>> ParseLambda<T, TResult>(Type delegateType, ParsingConfig parsingConfig, bool createParameterCtor, string expression, params object[] values)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">delegateType</span></td>
<td><p>The delegate type.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The Configuration for the parsing.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> then also create a constructor for all the parameters. Note that this doesn't work for Linq-to-Database entities.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>An object array that contains zero or more objects which are used as replacement values.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span><<span class="xref">System.Func</span><T, TResult>></td>
<td><p>The generated <span class="xref">System.Linq.Expressions.Expression</span></p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T</span></td>
<td><p>The <code>it</code>-Type.</p>
</td>
</tr>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L12" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.DynamicExpressionParser.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 22,852
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Interface IDynamicLinkCustomTypeProvider
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Interface IDynamicLinkCustomTypeProvider
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider">
<h1 id=your_sha256_hashypeProvider" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider" class="text-break">Interface IDynamicLinkCustomTypeProvider
</h1>
<div class="markdown level0 summary"><p>Interface for providing functionality to find custom types for or resolve any type.
Note that this interface will be marked obsolete in the next version. Use <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html">IDynamicLinqCustomTypeProvider</a> instead.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_GetCustomTypes">IDynamicLinqCustomTypeProvider.GetCustomTypes()</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_GetExtensionMethods">IDynamicLinqCustomTypeProvider.GetExtensionMethods()</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_ResolveType_System_String_">IDynamicLinqCustomTypeProvider.ResolveType(String)</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html#your_sha256_hashypeProvider_ResolveTypeBySimpleName_System_String_">IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(String)</a>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.html">System.Linq.Dynamic.Core.CustomTypeProviders</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id=your_sha256_hashypeProvider_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IDynamicLinkCustomTypeProvider : IDynamicLinqCustomTypeProvider</code></pre>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L7" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,657
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace System.Linq.Dynamic.Core.Tokenizer
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace System.Linq.Dynamic.Core.Tokenizer
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Tokenizer">
<h1 id="System_Linq_Dynamic_Core_Tokenizer" data-uid="System.Linq.Dynamic.Core.Tokenizer" class="text-break">Namespace System.Linq.Dynamic.Core.Tokenizer
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="classes">Classes
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.TextParser.html">TextParser</a></h4>
<section><p>TextParser which can be used to parse a text into tokens.</p>
</section>
<h3 id="structs">Structs
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.Token.html">Token</a></h4>
<section><p>Token</p>
</section>
<h3 id="enums">Enums
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.TokenId.html">TokenId</a></h4>
<section><p>TokenId which defines the text which is parsed.</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Tokenizer.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,333
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DefaultDynamicLinqCustomTypeProvider
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DefaultDynamicLinqCustomTypeProvider
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider">
<h1 id=your_sha256_hashustomTypeProvider" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider" class="text-break">Class DefaultDynamicLinqCustomTypeProvider
</h1>
<div class="markdown level0 summary"><p>The default implementation for <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html">DefaultDynamicLinqCustomTypeProvider</a>.</p>
<p>Scans the current AppDomain for all types marked with <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute.html">DynamicLinqTypeAttribute</a>, and adds them as custom Dynamic Link types.</p>
<p>Also provides functionality to resolve a Type in the current Application Domain.</p>
<p>This class is used as default for full .NET Framework and .NET Core App 2.x and higher.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html">AbstractDynamicLinqCustomTypeProvider</a></div>
<div class="level2"><span class="xref">DefaultDynamicLinqCustomTypeProvider</span></div>
</div>
<div class="implements">
<h5>Implements</h5>
<div><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider.html">IDynamicLinkCustomTypeProvider</a></div>
<div><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html">IDynamicLinqCustomTypeProvider</a></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hashyour_sha256_hash__">AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute(IEnumerable<Assembly>)</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hashrable_System_Reflection_Assembly__System_String_">AbstractDynamicLinqCustomTypeProvider.ResolveType(IEnumerable<Assembly>, String)</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hashneric_IEnumerable_System_Reflection_Assembly__System_String_">AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(IEnumerable<Assembly>, String)</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html#your_sha256_hashyour_sha256_hashyour_sha256_hashy__">AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute(IEnumerable<Assembly>)</a>
</div>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.html">System.Linq.Dynamic.Core.CustomTypeProviders</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id=your_sha256_hashustomTypeProvider_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class DefaultDynamicLinqCustomTypeProvider : AbstractDynamicLinqCustomTypeProvider, IDynamicLinkCustomTypeProvider, IDynamicLinqCustomTypeProvider</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L30">View Source</a>
</span>
<a id=your_sha256_hashustomTypeProvider__ctor_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor*"></a>
<h4 id=your_sha256_hashustomTypeProvider__ctor_System_Boolean_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor(System.Boolean)">DefaultDynamicLinqCustomTypeProvider(Boolean)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html">DefaultDynamicLinqCustomTypeProvider</a> class.
Backwards compatibility for issue <a href="path_to_url">path_to_url
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[Obsolete("Please use the DefaultDynamicLinqCustomTypeProvider(ParsingConfig config, bool cacheCustomTypes = true) constructor.")]
public DefaultDynamicLinqCustomTypeProvider(bool cacheCustomTypes = true)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">cacheCustomTypes</span></td>
<td><p>Defines whether to cache the CustomTypes (including extension methods) which are found in the Application Domain. Default set to 'true'.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L40">View Source</a>
</span>
<a id=your_sha256_hashustomTypeProvider__ctor_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor*"></a>
<h4 id=your_sha256_hashyour_sha256_hashystem_Boolean_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.#ctor(System.Linq.Dynamic.Core.ParsingConfig,System.Boolean)">DefaultDynamicLinqCustomTypeProvider(ParsingConfig, Boolean)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html">DefaultDynamicLinqCustomTypeProvider</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public DefaultDynamicLinqCustomTypeProvider(ParsingConfig config, bool cacheCustomTypes = true)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The parsing configuration.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">cacheCustomTypes</span></td>
<td><p>Defines whether to cache the CustomTypes (including extension methods) which are found in the Application Domain. Default set to 'true'.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L47">View Source</a>
</span>
<a id=your_sha256_hashustomTypeProvider_GetCustomTypes_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetCustomTypes*"></a>
<h4 id=your_sha256_hashustomTypeProvider_GetCustomTypes" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetCustomTypes">GetCustomTypes()</h4>
<div class="markdown level1 summary"><p>Returns a list of custom types that System.Linq.Dynamic.Core will understand.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public virtual HashSet<Type> GetCustomTypes()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.HashSet</span><<span class="xref">System.Type</span>></td>
<td><p>A <span class="xref">System.Collections.Generic.HashSet<T></span> list of custom types.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L63">View Source</a>
</span>
<a id=your_sha256_hashustomTypeProvider_GetExtensionMethods_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods*"></a>
<h4 id=your_sha256_hashustomTypeProvider_GetExtensionMethods" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.GetExtensionMethods">GetExtensionMethods()</h4>
<div class="markdown level1 summary"><p>Returns a list of custom extension methods that System.Linq.Dynamic.Core will understand.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Dictionary<Type, List<MethodInfo>> GetExtensionMethods()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.Dictionary</span><<span class="xref">System.Type</span>, <span class="xref">System.Collections.Generic.List</span><<span class="xref">System.Reflection.MethodInfo</span>>></td>
<td><p>A list of custom extension methods that System.Linq.Dynamic.Core will understand.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L79">View Source</a>
</span>
<a id=your_sha256_hashustomTypeProvider_ResolveType_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveType*"></a>
<h4 id=your_sha256_hashustomTypeProvider_ResolveType_System_String_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveType(System.String)">ResolveType(String)</h4>
<div class="markdown level1 summary"><p>Resolve any type by fullname which is registered in the current application domain.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Type ResolveType(string typeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">typeName</span></td>
<td><p>The typename to resolve.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>A resolved <span class="xref">System.Type</span> or null when not found.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L88">View Source</a>
</span>
<a id=your_sha256_hashustomTypeProvider_ResolveTypeBySimpleName_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName*"></a>
<h4 id=your_sha256_hashustomTypeProvider_ResolveTypeBySimpleName_System_String_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.String)">ResolveTypeBySimpleName(String)</h4>
<div class="markdown level1 summary"><p>Resolve any type by the simple name which is registered in the current application domain.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Type ResolveTypeBySimpleName(string simpleTypeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">simpleTypeName</span></td>
<td><p>The typename to resolve.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>A resolved <span class="xref">System.Type</span> or null when not found.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider.html">IDynamicLinkCustomTypeProvider</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html">IDynamicLinqCustomTypeProvider</a>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L17" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 5,248
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Interface IQueryableAnalyzer
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Interface IQueryableAnalyzer
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.IQueryableAnalyzer">
<h1 id="System_Linq_Dynamic_Core_IQueryableAnalyzer" data-uid="System.Linq.Dynamic.Core.IQueryableAnalyzer" class="text-break">Interface IQueryableAnalyzer
</h1>
<div class="markdown level0 summary"><p>Interface for QueryableAnalyzer.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_IQueryableAnalyzer_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IQueryableAnalyzer</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L14">View Source</a>
</span>
<a id=your_sha256_hashs_" data-uid="System.Linq.Dynamic.Core.IQueryableAnalyzer.SupportsLinqToObjects*"></a>
<h4 id=your_sha256_hashs_System_Linq_IQueryable_System_Linq_IQueryProvider_" data-uid="System.Linq.Dynamic.Core.IQueryableAnalyzer.SupportsLinqToObjects(System.Linq.IQueryable,System.Linq.IQueryProvider)">SupportsLinqToObjects(IQueryable, IQueryProvider)</h4>
<div class="markdown level1 summary"><p>Determines whether the specified query (and provider) supports LinqToObjects.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">bool SupportsLinqToObjects(IQueryable query, IQueryProvider provider = null)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">query</span></td>
<td><p>The query to check.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.IQueryProvider</span></td>
<td><span class="parametername">provider</span></td>
<td><p>The provider to check (can be null).</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p>true/false</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L6" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.IQueryableAnalyzer.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,898
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class GroupResult
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class GroupResult
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.GroupResult">
<h1 id="System_Linq_Dynamic_Core_GroupResult" data-uid="System.Linq.Dynamic.Core.GroupResult" class="text-break">Class GroupResult
</h1>
<div class="markdown level0 summary"><p>The result of a call to a <a class="xref" href="System.Linq.Dynamic.Core.DynamicQueryableExtensions.html">DynamicQueryableExtensions</a>.GroupByMany() overload.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">GroupResult</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_GroupResult_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class GroupResult</code></pre>
</div>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L24">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_GroupResult_Count_" data-uid="System.Linq.Dynamic.Core.GroupResult.Count*"></a>
<h4 id="System_Linq_Dynamic_Core_GroupResult_Count" data-uid="System.Linq.Dynamic.Core.GroupResult.Count">Count</h4>
<div class="markdown level1 summary"><p>The number of resulting elements in the group.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public int Count { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L29">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_GroupResult_Items_" data-uid="System.Linq.Dynamic.Core.GroupResult.Items*"></a>
<h4 id="System_Linq_Dynamic_Core_GroupResult_Items" data-uid="System.Linq.Dynamic.Core.GroupResult.Items">Items</h4>
<div class="markdown level1 summary"><p>The resulting elements in the group.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IEnumerable Items { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L16">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_GroupResult_Key_" data-uid="System.Linq.Dynamic.Core.GroupResult.Key*"></a>
<h4 id="System_Linq_Dynamic_Core_GroupResult_Key" data-uid="System.Linq.Dynamic.Core.GroupResult.Key">Key</h4>
<div class="markdown level1 summary"><p>The key value of the group.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public object Key { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L34">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_GroupResult_Subgroups_" data-uid="System.Linq.Dynamic.Core.GroupResult.Subgroups*"></a>
<h4 id="System_Linq_Dynamic_Core_GroupResult_Subgroups" data-uid="System.Linq.Dynamic.Core.GroupResult.Subgroups">Subgroups</h4>
<div class="markdown level1 summary"><p>The resulting subgroups in the group.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IEnumerable<GroupResult> Subgroups { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<a class="xref" href="System.Linq.Dynamic.Core.GroupResult.html">GroupResult</a>></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L42">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_GroupResult_ToString_" data-uid="System.Linq.Dynamic.Core.GroupResult.ToString*"></a>
<h4 id="System_Linq_Dynamic_Core_GroupResult_ToString" data-uid="System.Linq.Dynamic.Core.GroupResult.ToString">ToString()</h4>
<div class="markdown level1 summary"><p>Returns a <span class="xref">System.String</span> showing the key of the group and the number of items in the group.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override string ToString()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><p>A <span class="xref">System.String</span> that represents this instance.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><span class="xref">System.Object.ToString()</span></div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L10" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.GroupResult.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,340
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace System
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace System
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System">
<h1 id="System" data-uid="System" class="text-break">Namespace System
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="classes">Classes
</h3>
<h4><a class="xref" href="System.Tuple-2.html">Tuple<T1, T2></a></h4>
<section><p>Represents a 2-tuple, or pair.</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,176
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Struct Token
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Struct Token
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token">
<h1 id="System_Linq_Dynamic_Core_Tokenizer_Token" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token" class="text-break">Struct Token
</h1>
<div class="markdown level0 summary"><p>Token</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.ValueType.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.ValueType.GetHashCode()</span>
</div>
<div>
<span class="xref">System.ValueType.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.html">System.Linq.Dynamic.Core.Tokenizer</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Tokenizer_Token_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public struct Token</code></pre>
</div>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L11">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Tokenizer_Token_Id_" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token.Id*"></a>
<h4 id="System_Linq_Dynamic_Core_Tokenizer_Token_Id" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token.Id">Id</h4>
<div class="markdown level1 summary"><p>The TokenId.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public TokenId Id { readonly get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.TokenId.html">TokenId</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L16">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Tokenizer_Token_OriginalId_" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token.OriginalId*"></a>
<h4 id="System_Linq_Dynamic_Core_Tokenizer_Token_OriginalId" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token.OriginalId">OriginalId</h4>
<div class="markdown level1 summary"><p>The Original TokenId.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public TokenId OriginalId { readonly get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.TokenId.html">TokenId</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L26">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Tokenizer_Token_Pos_" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token.Pos*"></a>
<h4 id="System_Linq_Dynamic_Core_Tokenizer_Token_Pos" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token.Pos">Pos</h4>
<div class="markdown level1 summary"><p>The position.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public int Pos { readonly get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L21">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Tokenizer_Token_Text_" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token.Text*"></a>
<h4 id="System_Linq_Dynamic_Core_Tokenizer_Token_Text" data-uid="System.Linq.Dynamic.Core.Tokenizer.Token.Text">Text</h4>
<div class="markdown level1 summary"><p>The text.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string Text { readonly get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L6" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Tokenizer.Token.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,859
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Enum TokenId
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Enum TokenId
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Tokenizer.TokenId">
<h1 id="System_Linq_Dynamic_Core_Tokenizer_TokenId" data-uid="System.Linq.Dynamic.Core.Tokenizer.TokenId" class="text-break">Enum TokenId
</h1>
<div class="markdown level0 summary"><p>TokenId which defines the text which is parsed.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Tokenizer.html">System.Linq.Dynamic.Core.Tokenizer</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Tokenizer_TokenId_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public enum TokenId</code></pre>
</div>
<h3 id="fields">Fields
</h3>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<thead>
<tbody>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Ampersand">Ampersand</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Asterisk">Asterisk</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Bar">Bar</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_CloseBracket">CloseBracket</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_CloseCurlyParen">CloseCurlyParen</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_CloseParen">CloseParen</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Colon">Colon</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Comma">Comma</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Dot">Dot</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleAmpersand">DoubleAmpersand</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleBar">DoubleBar</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleEqual">DoubleEqual</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleGreaterThan">DoubleGreaterThan</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_DoubleLessThan">DoubleLessThan</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_End">End</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Equal">Equal</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Exclamation">Exclamation</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_ExclamationEqual">ExclamationEqual</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_GreaterThan">GreaterThan</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_GreaterThanEqual">GreaterThanEqual</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Identifier">Identifier</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_IntegerLiteral">IntegerLiteral</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Lambda">Lambda</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_LessGreater">LessGreater</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_LessThan">LessThan</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_LessThanEqual">LessThanEqual</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Minus">Minus</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_NullCoalescing">NullCoalescing</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_NullPropagation">NullPropagation</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_OpenBracket">OpenBracket</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_OpenCurlyParen">OpenCurlyParen</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_OpenParen">OpenParen</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Percent">Percent</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Plus">Plus</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Question">Question</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_RealLiteral">RealLiteral</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Slash">Slash</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_StringLiteral">StringLiteral</td>
<td></td>
</tr>
<tr>
<td id="System_Linq_Dynamic_Core_Tokenizer_TokenId_Unknown">Unknown</td>
<td></td>
</tr>
</tbody>
</thead></thead></table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L7" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Tokenizer.TokenId.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,932
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Enum StringLiteralParsingType
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Enum StringLiteralParsingType
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Config.StringLiteralParsingType">
<h1 id="System_Linq_Dynamic_Core_Config_StringLiteralParsingType" data-uid="System.Linq.Dynamic.Core.Config.StringLiteralParsingType" class="text-break">Enum StringLiteralParsingType
</h1>
<div class="markdown level0 summary"><p>Defines the types of string literal parsing that can be performed.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Config.html">System.Linq.Dynamic.Core.Config</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Config_StringLiteralParsingType_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public enum StringLiteralParsingType : byte</code></pre>
</div>
<h3 id="fields">Fields
</h3>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
<thead>
<tbody>
<tr>
<td id=your_sha256_hash>Default</td>
<td><p>Represents the default string literal parsing type. Double quotes should be escaped using the default escape character (a ).
To check if a Value equals a double quote, use this c# code:</p>
<pre><code>var expression = "Value == \"\\\"\"";</code></pre>
</td>
</tr>
<tr>
<td id=your_sha256_hashoubleQuoteByTwoDoubleQuotes">EscapeDoubleQuoteByTwoDoubleQuotes</td>
<td><p>Represents a string literal parsing type where a double quote should be escaped by an extra double quote (").
To check if a Value equals a double quote, use this c# code:</p>
<pre><code>var expression = "Value == \"\"\"\"";</code></pre>
</td>
</tr>
</tbody>
</thead></thead></table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L6" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Config.StringLiteralParsingType.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,618
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Interface IDynamicLinqCustomTypeProvider
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Interface IDynamicLinqCustomTypeProvider
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider">
<h1 id=your_sha256_hashypeProvider" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider" class="text-break">Interface IDynamicLinqCustomTypeProvider
</h1>
<div class="markdown level0 summary"><p>Interface for providing functionality to find custom types for or resolve any type.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.html">System.Linq.Dynamic.Core.CustomTypeProviders</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id=your_sha256_hashypeProvider_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IDynamicLinqCustomTypeProvider</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L15">View Source</a>
</span>
<a id=your_sha256_hashypeProvider_GetCustomTypes_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetCustomTypes*"></a>
<h4 id=your_sha256_hashypeProvider_GetCustomTypes" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetCustomTypes">GetCustomTypes()</h4>
<div class="markdown level1 summary"><p>Returns a list of custom types that System.Linq.Dynamic.Core will understand.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">HashSet<Type> GetCustomTypes()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.HashSet</span><<span class="xref">System.Type</span>></td>
<td><p>A <span class="xref">System.Collections.Generic.HashSet<T></span> list of custom types.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L21">View Source</a>
</span>
<a id=your_sha256_hashypeProvider_GetExtensionMethods_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetExtensionMethods*"></a>
<h4 id=your_sha256_hashypeProvider_GetExtensionMethods" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.GetExtensionMethods">GetExtensionMethods()</h4>
<div class="markdown level1 summary"><p>Returns a list of custom extension methods that System.Linq.Dynamic.Core will understand.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Dictionary<Type, List<MethodInfo>> GetExtensionMethods()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.Dictionary</span><<span class="xref">System.Type</span>, <span class="xref">System.Collections.Generic.List</span><<span class="xref">System.Reflection.MethodInfo</span>>></td>
<td><p>A list of custom extension methods that System.Linq.Dynamic.Core will understand.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L28">View Source</a>
</span>
<a id=your_sha256_hashypeProvider_ResolveType_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveType*"></a>
<h4 id=your_sha256_hashypeProvider_ResolveType_System_String_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveType(System.String)">ResolveType(String)</h4>
<div class="markdown level1 summary"><p>Resolve any type by fullname which is registered in the current application domain.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Type ResolveType(string typeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">typeName</span></td>
<td><p>The typename to resolve.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>A resolved <span class="xref">System.Type</span> or null when not found.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L35">View Source</a>
</span>
<a id=your_sha256_hashypeProvider_ResolveTypeBySimpleName_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName*"></a>
<h4 id=your_sha256_hashypeProvider_ResolveTypeBySimpleName_System_String_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.String)">ResolveTypeBySimpleName(String)</h4>
<div class="markdown level1 summary"><p>Resolve any type by the simple name which is registered in the current application domain.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Type ResolveTypeBySimpleName(string simpleTypeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">simpleTypeName</span></td>
<td><p>The typename to resolve.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>A resolved <span class="xref">System.Type</span> or null when not found.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L9" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,226
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DynamicEnumerableExtensions
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DynamicEnumerableExtensions
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions">
<h1 id="System_Linq_Dynamic_Core_DynamicEnumerableExtensions" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions" class="text-break">Class DynamicEnumerableExtensions
</h1>
<div class="markdown level0 summary"><p>Define extensions on <span class="xref">System.Collections.IEnumerable</span>.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">DynamicEnumerableExtensions</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_DynamicEnumerableExtensions_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static class DynamicEnumerableExtensions</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L27">View Source</a>
</span>
<a id=your_sha256_hashray_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray*"></a>
<h4 id=your_sha256_hashray_System_Collections_IEnumerable_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray(System.Collections.IEnumerable)">ToDynamicArray(IEnumerable)</h4>
<div class="markdown level1 summary"><p>Creates an array of dynamic objects from a <span class="xref">System.Collections.IEnumerable</span>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object[] ToDynamicArray(this IEnumerable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Collections.IEnumerable</span> to create an array from.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><p>An array that contains the elements from the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L56">View Source</a>
</span>
<a id=your_sha256_hashray_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray*"></a>
<h4 id=your_sha256_hashray_System_Collections_IEnumerable_System_Type_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray(System.Collections.IEnumerable,System.Type)">ToDynamicArray(IEnumerable, Type)</h4>
<div class="markdown level1 summary"><p>Creates an array of dynamic objects from a <span class="xref">System.Collections.IEnumerable</span>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object[] ToDynamicArray(this IEnumerable source, Type type)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Collections.IEnumerable</span> to create an array from.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">type</span></td>
<td><p>A <span class="xref">System.Type</span> cast to.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><p>An Array that contains the elements from the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L44">View Source</a>
</span>
<a id=your_sha256_hashray_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray*"></a>
<h4 id=your_sha256_hashray__1_System_Collections_IEnumerable_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicArray``1(System.Collections.IEnumerable)">ToDynamicArray<T>(IEnumerable)</h4>
<div class="markdown level1 summary"><p>Creates an array of dynamic objects from a <span class="xref">System.Collections.IEnumerable</span>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static T[] ToDynamicArray<T>(this IEnumerable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Collections.IEnumerable</span> to create an array from.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>T[]</td>
<td><p>An Array{T} that contains the elements from the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T</span></td>
<td><p>The generic type.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L78">View Source</a>
</span>
<a id=your_sha256_hashst_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList*"></a>
<h4 id=your_sha256_hashst_System_Collections_IEnumerable_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList(System.Collections.IEnumerable)">ToDynamicList(IEnumerable)</h4>
<div class="markdown level1 summary"><p>Creates a list of dynamic objects from a <span class="xref">System.Collections.IEnumerable</span>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static List<object> ToDynamicList(this IEnumerable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Collections.IEnumerable</span> to create an array from.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.List</span><<span class="xref">System.Object</span>></td>
<td><p>A List that contains the elements from the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L97">View Source</a>
</span>
<a id=your_sha256_hashst_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList*"></a>
<h4 id=your_sha256_hashst_System_Collections_IEnumerable_System_Type_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList(System.Collections.IEnumerable,System.Type)">ToDynamicList(IEnumerable, Type)</h4>
<div class="markdown level1 summary"><p>Creates a list of dynamic objects from a <span class="xref">System.Collections.IEnumerable</span>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static List<object> ToDynamicList(this IEnumerable source, Type type)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Collections.IEnumerable</span> to create an array from.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">type</span></td>
<td><p>A <span class="xref">System.Type</span> cast to.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.List</span><<span class="xref">System.Object</span>></td>
<td><p>A List that contains the elements from the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L111">View Source</a>
</span>
<a id=your_sha256_hashst_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList*"></a>
<h4 id=your_sha256_hashst__1_System_Collections_IEnumerable_" data-uid="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.ToDynamicList``1(System.Collections.IEnumerable)">ToDynamicList<T>(IEnumerable)</h4>
<div class="markdown level1 summary"><p>Creates a list of dynamic objects from a <span class="xref">System.Collections.IEnumerable</span>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static List<T> ToDynamicList<T>(this IEnumerable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Collections.IEnumerable</span> to create an array from.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.List</span><T></td>
<td><p>A List{T} that contains the elements from the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T</span></td>
<td><p>Generic Type</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L11" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 5,147
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace System.Linq.Dynamic.Core.Exceptions
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace System.Linq.Dynamic.Core.Exceptions
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Exceptions">
<h1 id="System_Linq_Dynamic_Core_Exceptions" data-uid="System.Linq.Dynamic.Core.Exceptions" class="text-break">Namespace System.Linq.Dynamic.Core.Exceptions
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="classes">Classes
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Exceptions.ParseException.html">ParseException</a></h4>
<section><p>Represents errors that occur while parsing dynamic linq string expressions.</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Exceptions.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,198
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Interface IExpressionPromoter
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Interface IExpressionPromoter
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Parser.IExpressionPromoter">
<h1 id="System_Linq_Dynamic_Core_Parser_IExpressionPromoter" data-uid="System.Linq.Dynamic.Core.Parser.IExpressionPromoter" class="text-break">Interface IExpressionPromoter
</h1>
<div class="markdown level0 summary"><p>Expression promoter is used to promote object or value types
to their destination type when an automatic promotion is available
such as: int to int?</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Parser.html">System.Linq.Dynamic.Core.Parser</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Parser_IExpressionPromoter_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IExpressionPromoter</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L20">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_IExpressionPromoter_Promote_" data-uid="System.Linq.Dynamic.Core.Parser.IExpressionPromoter.Promote*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_Boolean_" data-uid="System.Linq.Dynamic.Core.Parser.IExpressionPromoter.Promote(System.Linq.Expressions.Expression,System.Type,System.Boolean,System.Boolean)">Promote(Expression, Type, Boolean, Boolean)</h4>
<div class="markdown level1 summary"><p>Promote an expression</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Expression Promote(Expression expr, Type type, bool exact, bool convertExpr)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span></td>
<td><span class="parametername">expr</span></td>
<td><p>Source expression</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">type</span></td>
<td><p>Destination data type to promote</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">exact</span></td>
<td><p>If the match must be exact</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">convertExpr</span></td>
<td><p>Convert expression</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span></td>
<td><p>The promoted <span class="xref">System.Linq.Expressions.Expression</span> or null.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L10" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,055
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace System.Linq.Dynamic.Core.Parser
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace System.Linq.Dynamic.Core.Parser
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Parser">
<h1 id="System_Linq_Dynamic_Core_Parser" data-uid="System.Linq.Dynamic.Core.Parser" class="text-break">Namespace System.Linq.Dynamic.Core.Parser
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="classes">Classes
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Parser.ExpressionParser.html">ExpressionParser</a></h4>
<section><p>ExpressionParser</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Parser.ExpressionPromoter.html">ExpressionPromoter</a></h4>
<section><p>ExpressionPromoter</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Parser.NumberParser.html">NumberParser</a></h4>
<section><p>NumberParser</p>
</section>
<h3 id="interfaces">Interfaces
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html">IExpressionPromoter</a></h4>
<section><p>Expression promoter is used to promote object or value types
to their destination type when an automatic promotion is available
such as: int to int?</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Parser.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,370
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class ExtensibilityPoint
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class ExtensibilityPoint
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.ExtensibilityPoint">
<h1 id="System_Linq_Dynamic_Core_ExtensibilityPoint" data-uid="System.Linq.Dynamic.Core.ExtensibilityPoint" class="text-break">Class ExtensibilityPoint
</h1>
<div class="markdown level0 summary"><p>Extensibility point: If you want to modify expanded queries before executing them
set your own functionality to override empty QueryOptimizer</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">ExtensibilityPoint</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_ExtensibilityPoint_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class ExtensibilityPoint</code></pre>
</div>
<h3 id="fields">Fields
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L15">View Source</a>
</span>
<h4 id="System_Linq_Dynamic_Core_ExtensibilityPoint_QueryOptimizer" data-uid="System.Linq.Dynamic.Core.ExtensibilityPoint.QueryOptimizer">QueryOptimizer</h4>
<div class="markdown level1 summary"><p>Place to optimize your queries. Example: Add a reference to Nuget package Linq.Expression.Optimizer
and in your program initializers set Extensibility.QueryOptimizer = ExpressionOptimizer.visit;</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static Func<Expression, Expression> QueryOptimizer</code></pre>
</div>
<h5 class="fieldValue">Field Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Func</span><<span class="xref">System.Linq.Expressions.Expression</span>, <span class="xref">System.Linq.Expressions.Expression</span>></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L9" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.ExtensibilityPoint.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,982
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DynamicProperty
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DynamicProperty
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.DynamicProperty">
<h1 id="System_Linq_Dynamic_Core_DynamicProperty" data-uid="System.Linq.Dynamic.Core.DynamicProperty" class="text-break">Class DynamicProperty
</h1>
<div class="markdown level0 summary"><p>DynamicProperty</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">DynamicProperty</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_DynamicProperty_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class DynamicProperty</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L13">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicProperty__ctor_" data-uid="System.Linq.Dynamic.Core.DynamicProperty.#ctor*"></a>
<h4 id=your_sha256_hashtem_Type_" data-uid="System.Linq.Dynamic.Core.DynamicProperty.#ctor(System.String,System.Type)">DynamicProperty(String, Type)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="System.Linq.Dynamic.Core.DynamicProperty.html">DynamicProperty</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public DynamicProperty(string name, Type type)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">name</span></td>
<td><p>The name from the property.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">type</span></td>
<td><p>The type from the property.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L25">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicProperty_Name_" data-uid="System.Linq.Dynamic.Core.DynamicProperty.Name*"></a>
<h4 id="System_Linq_Dynamic_Core_DynamicProperty_Name" data-uid="System.Linq.Dynamic.Core.DynamicProperty.Name">Name</h4>
<div class="markdown level1 summary"><p>Gets the name from the property.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string Name { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><p>The name from the property.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L33">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicProperty_Type_" data-uid="System.Linq.Dynamic.Core.DynamicProperty.Type*"></a>
<h4 id="System_Linq_Dynamic_Core_DynamicProperty_Type" data-uid="System.Linq.Dynamic.Core.DynamicProperty.Type">Type</h4>
<div class="markdown level1 summary"><p>Gets the type from the property.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Type Type { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>The type from the property.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L6" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.DynamicProperty.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,713
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace System.Linq.Dynamic.Core.Config
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace System.Linq.Dynamic.Core.Config
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Config">
<h1 id="System_Linq_Dynamic_Core_Config" data-uid="System.Linq.Dynamic.Core.Config" class="text-break">Namespace System.Linq.Dynamic.Core.Config
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="enums">Enums
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Config.StringLiteralParsingType.html">StringLiteralParsingType</a></h4>
<section><p>Defines the types of string literal parsing that can be performed.</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Config.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,202
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class ParseException
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class ParseException
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException">
<h1 id="System_Linq_Dynamic_Core_Exceptions_ParseException" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException" class="text-break">Class ParseException
</h1>
<div class="markdown level0 summary"><p>Represents errors that occur while parsing dynamic linq string expressions.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">System.Exception</span></div>
<div class="level2"><span class="xref">ParseException</span></div>
</div>
<div class="implements">
<h5>Implements</h5>
<div><span class="xref">System.Runtime.Serialization.ISerializable</span></div>
<div><span class="xref">System.Runtime.InteropServices._Exception</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Exception.GetBaseException()</span>
</div>
<div>
<span class="xref">System.Exception.GetType()</span>
</div>
<div>
<span class="xref">System.Exception.Message</span>
</div>
<div>
<span class="xref">System.Exception.Data</span>
</div>
<div>
<span class="xref">System.Exception.InnerException</span>
</div>
<div>
<span class="xref">System.Exception.TargetSite</span>
</div>
<div>
<span class="xref">System.Exception.StackTrace</span>
</div>
<div>
<span class="xref">System.Exception.HelpLink</span>
</div>
<div>
<span class="xref">System.Exception.Source</span>
</div>
<div>
<span class="xref">System.Exception.HResult</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Exceptions.html">System.Linq.Dynamic.Core.Exceptions</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Exceptions_ParseException_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[Serializable]
public sealed class ParseException : Exception, ISerializable, _Exception</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L28">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Exceptions_ParseException__ctor_" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException.#ctor*"></a>
<h4 id=your_sha256_hashString_System_Int32_System_Exception_" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException.#ctor(System.String,System.Int32,System.Exception)">ParseException(String, Int32, Exception)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="System.Linq.Dynamic.Core.Exceptions.ParseException.html">ParseException</a> class with a specified error message and position.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ParseException(string message, int position, Exception innerException = null)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">message</span></td>
<td><p>The message that describes the error.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">position</span></td>
<td><p>The location in the parsed string that produced the <a class="xref" href="System.Linq.Dynamic.Core.Exceptions.ParseException.html">ParseException</a></p>
</td>
</tr>
<tr>
<td><span class="xref">System.Exception</span></td>
<td><span class="parametername">innerException</span></td>
<td><p>The exception that is the cause of the current exception, or a null reference if no inner exception is specified.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L20">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Exceptions_ParseException_Position_" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException.Position*"></a>
<h4 id="System_Linq_Dynamic_Core_Exceptions_ParseException_Position" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException.Position">Position</h4>
<div class="markdown level1 summary"><p>The location in the parsed string that produced the <a class="xref" href="System.Linq.Dynamic.Core.Exceptions.ParseException.html">ParseException</a>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public int Position { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L69">View Source</a>
</span>
<a id=your_sha256_hash_" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException.GetObjectData*"></a>
<h4 id=your_sha256_hashyour_sha256_hasherialization_StreamingContext_" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">GetObjectData(SerializationInfo, StreamingContext)</h4>
<div class="markdown level1 summary"><p>When overridden in a derived class, sets the <span class="xref">System.Runtime.Serialization.SerializationInfo</span> with information about the exception.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override void GetObjectData(SerializationInfo info, StreamingContext context)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Runtime.Serialization.SerializationInfo</span></td>
<td><span class="parametername">info</span></td>
<td><p>The <span class="xref">System.Runtime.Serialization.SerializationInfo</span> that holds the serialized object data about the exception being thrown.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Runtime.Serialization.StreamingContext</span></td>
<td><span class="parametername">context</span></td>
<td><p>The <span class="xref">System.Runtime.Serialization.StreamingContext</span> that contains contextual information about the source or destination.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><span class="xref">System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)</span></div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L37">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Exceptions_ParseException_ToString_" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException.ToString*"></a>
<h4 id="System_Linq_Dynamic_Core_Exceptions_ParseException_ToString" data-uid="System.Linq.Dynamic.Core.Exceptions.ParseException.ToString">ToString()</h4>
<div class="markdown level1 summary"><p>Creates and returns a string representation of the current exception.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override string ToString()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><p>A string representation of the current exception.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><span class="xref">System.Exception.ToString()</span></div>
<h3 id="implements">Implements</h3>
<div>
<span class="xref">System.Runtime.Serialization.ISerializable</span>
</div>
<div>
<span class="xref">System.Runtime.InteropServices._Exception</span>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L13" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Exceptions.ParseException.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,808
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace System.Linq.Dynamic.Core.Util.Cache
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace System.Linq.Dynamic.Core.Util.Cache
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Util.Cache">
<h1 id="System_Linq_Dynamic_Core_Util_Cache" data-uid="System.Linq.Dynamic.Core.Util.Cache" class="text-break">Namespace System.Linq.Dynamic.Core.Util.Cache
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="classes">Classes
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html">CacheConfig</a></h4>
<section><p>Cache Configuration Options</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Util.Cache.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,198
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Interface IAssemblyHelper
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Interface IAssemblyHelper
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.IAssemblyHelper">
<h1 id="System_Linq_Dynamic_Core_IAssemblyHelper" data-uid="System.Linq.Dynamic.Core.IAssemblyHelper" class="text-break">Interface IAssemblyHelper
</h1>
<div class="markdown level0 summary"><p>IAssemblyHelper interface which is used to retrieve assemblies that have been loaded into the execution context of this application domain.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_IAssemblyHelper_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IAssemblyHelper</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L17">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_IAssemblyHelper_GetAssemblies_" data-uid="System.Linq.Dynamic.Core.IAssemblyHelper.GetAssemblies*"></a>
<h4 id="System_Linq_Dynamic_Core_IAssemblyHelper_GetAssemblies" data-uid="System.Linq.Dynamic.Core.IAssemblyHelper.GetAssemblies">GetAssemblies()</h4>
<div class="markdown level1 summary"><p>Gets the assemblies that have been loaded into the execution context of this application domain.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">Assembly[] GetAssemblies()</code></pre>
</div>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Reflection.Assembly</span>[]</td>
<td><p>An array of assemblies in this application domain.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L8" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.IAssemblyHelper.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,697
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class CacheConfig
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class CacheConfig
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig">
<h1 id="System_Linq_Dynamic_Core_Util_Cache_CacheConfig" data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig" class="text-break">Class CacheConfig
</h1>
<div class="markdown level0 summary"><p>Cache Configuration Options</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">CacheConfig</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Util.Cache.html">System.Linq.Dynamic.Core.Util.Cache</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Util_Cache_CacheConfig_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class CacheConfig</code></pre>
</div>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L26">View Source</a>
</span>
<a id=your_sha256_hash_" data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.CleanupFrequency*"></a>
<h4 id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.CleanupFrequency">CleanupFrequency</h4>
<div class="markdown level1 summary"><p>Sets the frequency for running the cleanup process in the Constant Expression cache.
By default, cleanup occurs every 10 minutes.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public TimeSpan CleanupFrequency { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.TimeSpan</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L20">View Source</a>
</span>
<a id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.MinItemsTrigger*"></a>
<h4 id="System_Linq_Dynamic_Core_Util_Cache_CacheConfig_MinItemsTrigger" data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.MinItemsTrigger">MinItemsTrigger</h4>
<div class="markdown level1 summary"><p>Configures the minimum number of items required in the constant expression cache before triggering cleanup.
This prevents frequent cleanups, especially in caches with few items.
A default value of null implies that cleanup is always allowed to run, helping in timely removal of unused cache items.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public int? MinItemsTrigger { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Nullable</span><<span class="xref">System.Int32</span>></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L35">View Source</a>
</span>
<a id=your_sha256_hashms_" data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.ReturnExpiredItems*"></a>
<h4 id=your_sha256_hashms" data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.ReturnExpiredItems">ReturnExpiredItems</h4>
<div class="markdown level1 summary"><p>Enables returning expired cache items in scenarios where cleanup, running on a separate thread,
has not yet removed them. This allows for the retrieval of an expired object without needing to
clear and recreate it if a request is made concurrently with cleanup. Particularly useful
when cached items are deterministic, ensuring consistent results even from expired entries.
Default true;</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool ReturnExpiredItems { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L13">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Util_Cache_CacheConfig_TimeToLive_" data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.TimeToLive*"></a>
<h4 id="System_Linq_Dynamic_Core_Util_Cache_CacheConfig_TimeToLive" data-uid="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.TimeToLive">TimeToLive</h4>
<div class="markdown level1 summary"><p>Sets a Time-To-Live (TTL) for items in the constant expression cache to prevent uncontrolled growth.
Items not accessed within this TTL will be expired, allowing garbage collection to reclaim the memory.
Default is 10 minutes.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public TimeSpan TimeToLive { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.TimeSpan</span></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L6" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,121
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class Tuple<T1, T2>
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class Tuple<T1, T2>
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Tuple`2">
<h1 id="System_Tuple_2" data-uid="System.Tuple`2" class="text-break">Class Tuple<T1, T2>
</h1>
<div class="markdown level0 summary"><p>Represents a 2-tuple, or pair.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">Tuple<T1, T2></span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.html">System</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Tuple_2_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class Tuple<T1, T2></code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">T1</span></td>
<td><p>The type of the tuple's first component.</p>
</td>
</tr>
<tr>
<td><span class="parametername">T2</span></td>
<td><p>The type of the tuple's second component.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L14">View Source</a>
</span>
<a id="System_Tuple_2_Item1_" data-uid="System.Tuple`2.Item1*"></a>
<h4 id="System_Tuple_2_Item1" data-uid="System.Tuple`2.Item1">Item1</h4>
<div class="markdown level1 summary"><p>The value of the current System.Tuple`2 object's first component.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public T1 Item1 { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">T1</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L19">View Source</a>
</span>
<a id="System_Tuple_2_Item2_" data-uid="System.Tuple`2.Item2*"></a>
<h4 id="System_Tuple_2_Item2" data-uid="System.Tuple`2.Item2">Item2</h4>
<div class="markdown level1 summary"><p>The value of the current System.Tuple`2 object's second component.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public T2 Item2 { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">T2</span></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L9" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Tuple-2.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,419
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class PagedResult<TSource>
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class PagedResult<TSource>
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.PagedResult`1">
<h1 id="System_Linq_Dynamic_Core_PagedResult_1" data-uid="System.Linq.Dynamic.Core.PagedResult`1" class="text-break">Class PagedResult<TSource>
</h1>
<div class="markdown level0 summary"><p>PagedResult{TSource}</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><a class="xref" href="System.Linq.Dynamic.Core.PagedResult.html">PagedResult</a></div>
<div class="level2"><span class="xref">PagedResult<TSource></span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_CurrentPage">PagedResult.CurrentPage</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_PageCount">PagedResult.PageCount</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_PageSize">PagedResult.PageSize</a>
</div>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.PagedResult.html#System_Linq_Dynamic_Core_PagedResult_RowCount">PagedResult.RowCount</a>
</div>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_PagedResult_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class PagedResult<TSource> : PagedResult</code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the source.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L62">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_PagedResult_1_Queryable_" data-uid="System.Linq.Dynamic.Core.PagedResult`1.Queryable*"></a>
<h4 id="System_Linq_Dynamic_Core_PagedResult_1_Queryable" data-uid="System.Linq.Dynamic.Core.PagedResult`1.Queryable">Queryable</h4>
<div class="markdown level1 summary"><p>Gets or sets the queryable.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IQueryable<TSource> Queryable { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><p>The queryable.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L54" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.PagedResult-1.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,313
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DynamicLinqTypeAttribute
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DynamicLinqTypeAttribute
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute">
<h1 id=your_sha256_hashibute" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute" class="text-break">Class DynamicLinqTypeAttribute
</h1>
<div class="markdown level0 summary"><p>Indicates to Dynamic Linq to consider the Type as a valid dynamic linq type.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">System.Attribute</span></div>
<div class="level2"><span class="xref">DynamicLinqTypeAttribute</span></div>
</div>
<div class="implements">
<h5>Implements</h5>
<div><span class="xref">System.Runtime.InteropServices._Attribute</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.MemberInfo, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.IsDefined(System.Reflection.MemberInfo, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttribute(System.Reflection.MemberInfo, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.ParameterInfo, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.IsDefined(System.Reflection.ParameterInfo, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttribute(System.Reflection.ParameterInfo, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.Module)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.Module, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.IsDefined(System.Reflection.Module, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.IsDefined(System.Reflection.Module, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttribute(System.Reflection.Module, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.Assembly)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttributes(System.Reflection.Assembly, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.IsDefined(System.Reflection.Assembly, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.IsDefined(System.Reflection.Assembly, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type)</span>
</div>
<div>
<span class="xref">System.Attribute.GetCustomAttribute(System.Reflection.Assembly, System.Type, System.Boolean)</span>
</div>
<div>
<span class="xref">System.Attribute.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Attribute.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Attribute.Match(System.Object)</span>
</div>
<div>
<span class="xref">System.Attribute.IsDefaultAttribute()</span>
</div>
<div>
<span class="xref">System.Attribute.System.Runtime.InteropServices._Attribute.GetTypeInfoCount(System.UInt32)</span>
</div>
<div>
<span class="xref">System.Attribute.System.Runtime.InteropServices._Attribute.GetTypeInfo(System.UInt32, System.UInt32, System.IntPtr)</span>
</div>
<div>
<span class="xref">System.Attribute.System.Runtime.InteropServices._Attribute.GetIDsOfNames(System.Guid, System.IntPtr, System.UInt32, System.UInt32, System.IntPtr)</span>
</div>
<div>
<span class="xref">System.Attribute.System.Runtime.InteropServices._Attribute.Invoke(System.UInt32, System.Guid, System.UInt32, System.Int16, System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr)</span>
</div>
<div>
<span class="xref">System.Attribute.TypeId</span>
</div>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.html">System.Linq.Dynamic.Core.CustomTypeProviders</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id=your_sha256_hashibute_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface, AllowMultiple = false, Inherited = false)]
public sealed class DynamicLinqTypeAttribute : Attribute, _Attribute</code></pre>
</div>
<h3 id="implements">Implements</h3>
<div>
<span class="xref">System.Runtime.InteropServices._Attribute</span>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L6" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,946
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class AbstractDynamicLinqCustomTypeProvider
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class AbstractDynamicLinqCustomTypeProvider
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider">
<h1 id=your_sha256_hashCustomTypeProvider" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider" class="text-break">Class AbstractDynamicLinqCustomTypeProvider
</h1>
<div class="markdown level0 summary"><p>The abstract DynamicLinqCustomTypeProvider which is used by the DefaultDynamicLinqCustomTypeProvider and can be used by a custom TypeProvider like in .NET Core.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">AbstractDynamicLinqCustomTypeProvider</span></div>
<div class="level2"><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html">DefaultDynamicLinqCustomTypeProvider</a></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.html">System.Linq.Dynamic.Core.CustomTypeProviders</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id=your_sha256_hashCustomTypeProvider_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public abstract class AbstractDynamicLinqCustomTypeProvider</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L20">View Source</a>
</span>
<a id=your_sha256_hashCustomTypeProvider_FindTypesMarkedWithDynamicLinqTypeAttribute_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hash__" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.FindTypesMarkedWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">FindTypesMarkedWithDynamicLinqTypeAttribute(IEnumerable<Assembly>)</h4>
<div class="markdown level1 summary"><p>Finds the unique types marked with DynamicLinqTypeAttribute.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected IEnumerable<Type> FindTypesMarkedWithDynamicLinqTypeAttribute(IEnumerable<Assembly> assemblies)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<span class="xref">System.Reflection.Assembly</span>></td>
<td><span class="parametername">assemblies</span></td>
<td><p>The assemblies to process.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<span class="xref">System.Type</span>></td>
<td><p><span class="xref">System.Collections.Generic.IEnumerable<T></span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L131">View Source</a>
</span>
<a id=your_sha256_hashyour_sha256_hash data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashy__" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute(System.Collections.Generic.IEnumerable{System.Reflection.Assembly})">GetAssemblyTypesWithDynamicLinqTypeAttribute(IEnumerable<Assembly>)</h4>
<div class="markdown level1 summary"><p>Gets the assembly types annotated with <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute.html">DynamicLinqTypeAttribute</a> in an Exception friendly way.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected Type[] GetAssemblyTypesWithDynamicLinqTypeAttribute(IEnumerable<Assembly> assemblies)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<span class="xref">System.Reflection.Assembly</span>></td>
<td><span class="parametername">assemblies</span></td>
<td><p>The assemblies to process.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span>[]</td>
<td><p>Array of <span class="xref">System.Type</span></p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L35">View Source</a>
</span>
<a id=your_sha256_hashCustomTypeProvider_ResolveType_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveType*"></a>
<h4 id=your_sha256_hashyour_sha256_hashrable_System_Reflection_Assembly__System_String_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveType(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},System.String)">ResolveType(IEnumerable<Assembly>, String)</h4>
<div class="markdown level1 summary"><p>Resolve any type which is registered in the current application domain.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected Type ResolveType(IEnumerable<Assembly> assemblies, string typeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<span class="xref">System.Reflection.Assembly</span>></td>
<td><span class="parametername">assemblies</span></td>
<td><p>The assemblies to inspect.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">typeName</span></td>
<td><p>The typename to resolve.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>A resolved <span class="xref">System.Type</span> or null when not found.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L58">View Source</a>
</span>
<a id=your_sha256_hashCustomTypeProvider_ResolveTypeBySimpleName_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName*"></a>
<h4 id=your_sha256_hashyour_sha256_hashneric_IEnumerable_System_Reflection_Assembly__System_String_" data-uid="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.ResolveTypeBySimpleName(System.Collections.Generic.IEnumerable{System.Reflection.Assembly},System.String)">ResolveTypeBySimpleName(IEnumerable<Assembly>, String)</h4>
<div class="markdown level1 summary"><p>Resolve a type by the simple name which is registered in the current application domain.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected Type ResolveTypeBySimpleName(IEnumerable<Assembly> assemblies, string simpleTypeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<span class="xref">System.Reflection.Assembly</span>></td>
<td><span class="parametername">assemblies</span></td>
<td><p>The assemblies to inspect.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">simpleTypeName</span></td>
<td><p>The simple typename to resolve.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><p>A resolved <span class="xref">System.Type</span> or null when not found.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L12" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 4,158
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class ExpressionParser
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class ExpressionParser
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser">
<h1 id="System_Linq_Dynamic_Core_Parser_ExpressionParser" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser" class="text-break">Class ExpressionParser
</h1>
<div class="markdown level0 summary"><p>ExpressionParser</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">ExpressionParser</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.Parser.html">System.Linq.Dynamic.Core.Parser</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_Parser_ExpressionParser_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class ExpressionParser</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L72">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_ExpressionParser__ctor_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser.#ctor*"></a>
<h4 id=your_sha256_hashyour_sha256_hash___System_Linq_Dynamic_Core_ParsingConfig_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser.#ctor(System.Linq.Expressions.ParameterExpression[],System.String,System.Object[],System.Linq.Dynamic.Core.ParsingConfig)">ExpressionParser(ParameterExpression[], String, Object[], ParsingConfig)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="System.Linq.Dynamic.Core.Parser.ExpressionParser.html">ExpressionParser</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ExpressionParser(ParameterExpression[] parameters, string expression, object[] values, ParsingConfig parsingConfig)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.ParameterExpression</span>[]</td>
<td><span class="parametername">parameters</span></td>
<td><p>The parameters.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>The expression.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">values</span></td>
<td><p>The values.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">parsingConfig</span></td>
<td><p>The parsing configuration.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L55">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_ExpressionParser_ItName_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser.ItName*"></a>
<h4 id="System_Linq_Dynamic_Core_Parser_ExpressionParser_ItName" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser.ItName">ItName</h4>
<div class="markdown level1 summary"><p>Gets name for the <code>it</code> field. By default this is set to the KeyWord value "it".</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string ItName { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L63">View Source</a>
</span>
<a id=your_sha256_hashe_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser.LastLambdaItName*"></a>
<h4 id=your_sha256_hashe" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser.LastLambdaItName">LastLambdaItName</h4>
<div class="markdown level1 summary"><p>There was a problem when an expression contained multiple lambdas where the ItName was not cleared and freed for the next lambda.
This variable stores the ItName of the last parsed lambda.
Not used internally by ExpressionParser, but used to preserve compatibility of parsingConfig.RenameParameterExpression
which was designed to only work with mono-lambda expressions.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string LastLambdaItName { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L153">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_Parser_ExpressionParser_Parse_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser.Parse*"></a>
<h4 id=your_sha256_hashpe_System_Boolean_" data-uid="System.Linq.Dynamic.Core.Parser.ExpressionParser.Parse(System.Type,System.Boolean)">Parse(Type, Boolean)</h4>
<div class="markdown level1 summary"><p>Uses the TextParser to parse the string into the specified result type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Expression Parse(Type resultType, bool createParameterCtor = true)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>Type of the result.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">createParameterCtor</span></td>
<td><p>if set to <code>true</code> [create parameter ctor].</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.Expressions.Expression</span></td>
<td><p>Expression</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L23" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.Parser.ExpressionParser.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 3,550
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DynamicQueryableExtensions
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DynamicQueryableExtensions
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions">
<h1 id="System_Linq_Dynamic_Core_DynamicQueryableExtensions" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions" class="text-break">Class DynamicQueryableExtensions
</h1>
<div class="markdown level0 summary"><p>Provides a set of static (Shared in Visual Basic) methods for querying data structures that implement <span class="xref">System.Linq.IQueryable</span>.
It allows dynamic string based querying. Very handy when, at compile time, you don't know the type of queries that will be generated,
or when downstream components only return column names to sort and filter by.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">DynamicQueryableExtensions</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static class DynamicQueryableExtensions</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L57">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Aggregate_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Aggregate*"></a>
<h4 id=your_sha256_hashstem_Linq_IQueryable_System_String_System_String_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Aggregate(System.Linq.IQueryable,System.String,System.String)">Aggregate(IQueryable, String, String)</h4>
<div class="markdown level1 summary"><p>Dynamically runs an aggregate function on the IQueryable.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object Aggregate(this IQueryable source, string function, string member)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The IQueryable data source.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">function</span></td>
<td><p>The name of the function to run. Can be Sum, Average, Min or Max.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">member</span></td>
<td><p>The name of the property to aggregate over.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The value of the aggregate function run over the specified property.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L121">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_All_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.All*"></a>
<h4 id=your_sha256_hashyour_sha256_hashing_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">All(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Determines whether all the elements of a sequence satisfy a condition.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static bool All(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence whose elements to test for a condition.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p>true if every element of the source sequence passes the test in the specified predicate, or if the sequence is empty; otherwise, false.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L109">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_All_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.All*"></a>
<h4 id=your_sha256_hashinq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.All(System.Linq.IQueryable,System.String,System.Object[])">All(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Determines whether all the elements of a sequence satisfy a condition.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static bool All(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence whose elements to test for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p>true if every element of the source sequence passes the test in the specified predicate, or if the sequence is empty; otherwise, false.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L149">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Any_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any*"></a>
<h4 id=your_sha256_hashinq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable)">Any(IQueryable)</h4>
<div class="markdown level1 summary"><p>Determines whether a sequence contains any elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool Any(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence to check for being empty.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p>true if the source sequence contains any elements; otherwise, false.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashinq_IQueryable__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result = queryable.Any();</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L172">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Any_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any*"></a>
<h4 id=your_sha256_hashyour_sha256_hashing_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Any(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Determines whether a sequence contains any elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static bool Any(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence to check for being empty.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p>true if the source sequence contains any elements; otherwise, false.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashing_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.Any("Income > 50");
var result2 = queryable.Any("Income > @0", 50);
var result3 = queryable.Select("Roles.Any()");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L197">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Any_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any*"></a>
<h4 id=your_sha256_hashinq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">Any(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Determines whether a sequence contains any elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool Any(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence to check for being empty.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p>true if the source sequence contains any elements; otherwise, false.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L186">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Any_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any*"></a>
<h4 id=your_sha256_hashinq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Any(System.Linq.IQueryable,System.String,System.Object[])">Any(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Determines whether a sequence contains any elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static bool Any(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p>true if the source sequence contains any elements; otherwise, false.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L286">View Source</a>
</span>
<a id=your_sha256_hashmerable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.AsDynamicEnumerable*"></a>
<h4 id=your_sha256_hashmerable_System_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.AsDynamicEnumerable(System.Linq.IQueryable)">AsDynamicEnumerable(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the input typed as <span class="xref">System.Collections.Generic.IEnumerable<T></span> of <span class="xref">System.Object</span>./></p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IEnumerable<object> AsDynamicEnumerable(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The sequence to type as <span class="xref">System.Collections.Generic.IEnumerable<T></span> of <span class="xref">System.Object</span>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<span class="xref">System.Object</span>></td>
<td><p>The input typed as <span class="xref">System.Collections.Generic.IEnumerable<T></span> of <span class="xref">System.Object</span>.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L219">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Average_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average*"></a>
<h4 id=your_sha256_hashem_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable)">Average(IQueryable)</h4>
<div class="markdown level1 summary"><p>Computes the average of a sequence of numeric values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static double Average(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of numeric values to calculate the average of.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Double</span></td>
<td><p>The average of the values in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashem_Linq_IQueryable__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.Average();
var result2 = queryable.Select("Roles.Average()");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L242">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Average_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Average(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Computes the average of a sequence of numeric values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static double Average(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of numeric values to calculate the average of.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Double</span></td>
<td><p>The average of the values in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hash_String_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result = queryable.Average("Income");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L268">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Average_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average*"></a>
<h4 id=your_sha256_hashem_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">Average(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Computes the average of a sequence of numeric values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static double Average(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of numeric values to calculate the average of.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Double</span></td>
<td><p>The average of the values in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L256">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Average_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average*"></a>
<h4 id=your_sha256_hashem_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Average(System.Linq.IQueryable,System.String,System.Object[])">Average(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Computes the average of a sequence of numeric values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static double Average(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Double</span></td>
<td><p>The average of the values in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L329">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Cast_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast*"></a>
<h4 id=your_sha256_hashyour_sha256_hashring_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)">Cast(IQueryable, ParsingConfig, String)</h4>
<div class="markdown level1 summary"><p>Converts the elements of an <span class="xref">System.Linq.IQueryable</span> to the specified type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Cast(this IQueryable source, ParsingConfig config, string typeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> that contains the elements to be converted.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">typeName</span></td>
<td><p>The type to convert the elements of source to.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains each element of the source sequence converted to the specified type.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L347">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Cast_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast*"></a>
<h4 id=your_sha256_hashLinq_IQueryable_System_String_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable,System.String)">Cast(IQueryable, String)</h4>
<div class="markdown level1 summary"><p>Converts the elements of an <span class="xref">System.Linq.IQueryable</span> to the specified type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Cast(this IQueryable source, string typeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> that contains the elements to be converted.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">typeName</span></td>
<td><p>The type to convert the elements of source to.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains each element of the source sequence converted to the specified type.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L312">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Cast_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast*"></a>
<h4 id=your_sha256_hashLinq_IQueryable_System_Type_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Cast(System.Linq.IQueryable,System.Type)">Cast(IQueryable, Type)</h4>
<div class="markdown level1 summary"><p>Converts the elements of an <span class="xref">System.Linq.IQueryable</span> to the specified type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Cast(this IQueryable source, Type type)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> that contains the elements to be converted.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">type</span></td>
<td><p>The type to convert the elements of source to.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains each element of the source sequence converted to the specified type.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L367">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Count_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count*"></a>
<h4 id=your_sha256_hash_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable)">Count(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the number of elements in a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static int Count(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> that contains the elements to be counted.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><p>The number of elements in the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hash_Linq_IQueryable__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result = queryable.Count();</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L392">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Count_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count*"></a>
<h4 id=your_sha256_hashyour_sha256_hashtring_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Count(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the number of elements in a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static int Count(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> that contains the elements to be counted.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><p>The number of elements in the specified sequence that satisfies a condition.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashtring_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.Count("Income > 50");
var result2 = queryable.Count("Income > @0", 50);
var result3 = queryable.Select("Roles.Count()");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L417">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Count_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count*"></a>
<h4 id=your_sha256_hash_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">Count(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Returns the number of elements in a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static int Count(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> that contains the elements to be counted.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><p>The number of elements in the specified sequence that satisfies a condition.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L406">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Count_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count*"></a>
<h4 id=your_sha256_hash_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Count(System.Linq.IQueryable,System.String,System.Object[])">Count(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the number of elements in a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static int Count(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><p>The number of elements in the specified sequence that satisfies a condition.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L440">View Source</a>
</span>
<a id=your_sha256_hashty_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty*"></a>
<h4 id=your_sha256_hashty_System_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty(System.Linq.IQueryable)">DefaultIfEmpty(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable DefaultIfEmpty(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return a default value for if empty.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains default if source is empty; otherwise, source.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashty_System_Linq_IQueryable__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.DefaultIfEmpty();</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L458">View Source</a>
</span>
<a id=your_sha256_hashty_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty*"></a>
<h4 id=your_sha256_hashty_System_Linq_IQueryable_System_Object_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.DefaultIfEmpty(System.Linq.IQueryable,System.Object)">DefaultIfEmpty(IQueryable, Object)</h4>
<div class="markdown level1 summary"><p>Returns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable DefaultIfEmpty(this IQueryable source, object defaultValue)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return a default value for if empty.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span></td>
<td><span class="parametername">defaultValue</span></td>
<td><p>The value to return if the sequence is empty.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains defaultValue if source is empty; otherwise, source.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashty_System_Linq_IQueryable_System_Object__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.DefaultIfEmpty(new Employee());</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L481">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Distinct_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Distinct*"></a>
<h4 id=your_sha256_hashtem_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Distinct(System.Linq.IQueryable)">Distinct(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns distinct elements from a sequence by using the default equality comparer to compare values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Distinct(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The sequence to remove duplicate elements from.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains distinct elements from the source sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashtem_Linq_IQueryable__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.Distinct();
var result2 = queryable.Select("Roles.Distinct()");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L498">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_First_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.First*"></a>
<h4 id=your_sha256_hash_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable)">First(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the first element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object First(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the first element of.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L518">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_First_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.First*"></a>
<h4 id=your_sha256_hashyour_sha256_hashtring_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">First(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the first element of a sequence that satisfies a specified condition.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object First(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the first element of.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L552">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_First_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.First*"></a>
<h4 id=your_sha256_hash_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">First(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Returns the first element of a sequence that satisfies a specified condition.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object First(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the first element of.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L537">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_First_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.First*"></a>
<h4 id=your_sha256_hash_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.First(System.Linq.IQueryable,System.String,System.Object[])">First(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the first element of a sequence that satisfies a specified condition.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object First(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L572">View Source</a>
</span>
<a id=your_sha256_hashlt_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault*"></a>
<h4 id=your_sha256_hashlt_System_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable)">FirstOrDefault(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the first element of a sequence, or a default value if the sequence contains no elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object FirstOrDefault(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the first element of.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>default if source is empty; otherwise, the first element in source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L590">View Source</a>
</span>
<a id=your_sha256_hashlt_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">FirstOrDefault(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object FirstOrDefault(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the first element of.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>default if source is empty or if no element passes the test specified by predicate; otherwise, the first element in source that passes the test specified by predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L624">View Source</a>
</span>
<a id=your_sha256_hashlt_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault*"></a>
<h4 id=your_sha256_hashyour_sha256_hashon_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">FirstOrDefault(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object FirstOrDefault(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the first element of.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>default if source is empty or if no element passes the test specified by predicate; otherwise, the first element in source that passes the test specified by predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L609">View Source</a>
</span>
<a id=your_sha256_hashlt_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault*"></a>
<h4 id=your_sha256_hashlt_System_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.FirstOrDefault(System.Linq.IQueryable,System.String,System.Object[])">FirstOrDefault(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object FirstOrDefault(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>default if source is empty or if no element passes the test specified by predicate; otherwise, the first element in source that passes the test specified by predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L797">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_String_System_Collections_IEqualityComparer_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IEqualityComparer,System.Object[])">GroupBy(IQueryable, ParsingConfig, String, IEqualityComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupBy(this IQueryable source, ParsingConfig config, string keySelector, IEqualityComparer equalityComparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements to group.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td><p>A string expression to specify the key for each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEqualityComparer</span></td>
<td><span class="parametername">equalityComparer</span></td>
<td><p>The comparer to use.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L781">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">GroupBy(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static IQueryable GroupBy(this IQueryable source, ParsingConfig config, string keySelector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements to group.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td><p>A string expression to specify the key for each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hash_String_System_Object____examples">Examples</h5>
<pre><code>var groupResult1 = queryable.GroupBy("NumberPropertyAsKey");
var groupResult2 = queryable.GroupBy("new (NumberPropertyAsKey, StringPropertyAsKey)");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L734">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_String_System_String_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String)">GroupBy(IQueryable, ParsingConfig, String, String)</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupBy(this IQueryable source, ParsingConfig config, string keySelector, string resultSelector)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements to group.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td><p>A string expression to specify the key for each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td><p>A string expression to specify a result value from each group.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hash_String_System_String__examples">Examples</h5>
<pre><code>var groupResult1 = queryable.GroupBy("NumberPropertyAsKey", "StringProperty");
var groupResult2 = queryable.GroupBy("new (NumberPropertyAsKey, StringPropertyAsKey)", "new (StringProperty1, StringProperty2)");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L755">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_String_System_String_System_Collections_IEqualityComparer_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer)">GroupBy(IQueryable, ParsingConfig, String, String, IEqualityComparer)</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupBy(this IQueryable source, ParsingConfig config, string keySelector, string resultSelector, IEqualityComparer equalityComparer)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements to group.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td><p>A string expression to specify the key for each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td><p>A string expression to specify a result value from each group.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEqualityComparer</span></td>
<td><span class="parametername">equalityComparer</span></td>
<td><p>The comparer to use.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L669">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashm_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])">GroupBy(IQueryable, ParsingConfig, String, String, IEqualityComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupBy(this IQueryable source, ParsingConfig config, string keySelector, string resultSelector, IEqualityComparer equalityComparer, object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements to group.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td><p>A string expression to specify the key for each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td><p>A string expression to specify a result value from each group.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEqualityComparer</span></td>
<td><span class="parametername">equalityComparer</span></td>
<td><p>The comparer to use.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L652">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_String_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[])">GroupBy(IQueryable, ParsingConfig, String, String, Object[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static IQueryable GroupBy(this IQueryable source, ParsingConfig config, string keySelector, string resultSelector, object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements to group.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td><p>A string expression to specify the key for each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td><p>A string expression to specify a result value from each group.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hash_String_System_String_System_Object____examples">Examples</h5>
<pre><code>var groupResult1 = queryable.GroupBy("NumberPropertyAsKey", "StringProperty");
var groupResult2 = queryable.GroupBy("new (NumberPropertyAsKey, StringPropertyAsKey)", "new (StringProperty1, StringProperty2)");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L838">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashparer_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.Collections.IEqualityComparer,System.Object[])">GroupBy(IQueryable, String, IEqualityComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupBy(this IQueryable source, string keySelector, IEqualityComparer equalityComparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEqualityComparer</span></td>
<td><span class="parametername">equalityComparer</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L831">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashem_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.Object[])">GroupBy(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static IQueryable GroupBy(this IQueryable source, string keySelector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L740">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashem_Linq_IQueryable_System_String_System_String_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String)">GroupBy(IQueryable, String, String)</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupBy(this IQueryable source, string keySelector, string resultSelector)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L761">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashs_IEqualityComparer_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer)">GroupBy(IQueryable, String, String, IEqualityComparer)</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupBy(this IQueryable source, string keySelector, string resultSelector, IEqualityComparer equalityComparer)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEqualityComparer</span></td>
<td><span class="parametername">equalityComparer</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L714">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashs_IEqualityComparer_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String,System.Collections.IEqualityComparer,System.Object[])">GroupBy(IQueryable, String, String, IEqualityComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupBy(this IQueryable source, string keySelector, string resultSelector, IEqualityComparer equalityComparer, object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEqualityComparer</span></td>
<td><span class="parametername">equalityComparer</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L707">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy*"></a>
<h4 id=your_sha256_hashem_Linq_IQueryable_System_String_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupBy(System.Linq.IQueryable,System.String,System.String,System.Object[])">GroupBy(IQueryable, String, String, Object[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to a specified key string function
and creates a result value from each group and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static IQueryable GroupBy(this IQueryable source, string keySelector, string resultSelector, object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">keySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> where each element represents a projection over a group and its key.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L887">View Source</a>
</span>
<a id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hashystem_Object____" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Object}[])">GroupByMany<TElement>(IEnumerable<TElement>, Func<TElement, Object>[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to multiple specified key functions
and creates a result value from each group (and subgroups) and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IEnumerable<GroupResult> GroupByMany<TElement>(this IEnumerable<TElement> source, params Func<TElement, object>[] keySelectors)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><TElement></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Collections.Generic.IEnumerable<T></span> whose elements to group.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Func</span><TElement, <span class="xref">System.Object</span>>[]</td>
<td><span class="parametername">keySelectors</span></td>
<td><p>Lambda expressions to specify the keys for each element.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<a class="xref" href="System.Linq.Dynamic.Core.GroupResult.html">GroupResult</a>></td>
<td><p>A <span class="xref">System.Collections.Generic.IEnumerable<T></span> of type <a class="xref" href="System.Linq.Dynamic.Core.GroupResult.html">GroupResult</a> where each element represents a projection over a group, its key, and its subgroups.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TElement</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L855">View Source</a>
</span>
<a id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hashic_Core_ParsingConfig_System_String___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany``1(System.Collections.Generic.IEnumerable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String[])">GroupByMany<TElement>(IEnumerable<TElement>, ParsingConfig, String[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to multiple specified key string functions
and creates a result value from each group (and subgroups) and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IEnumerable<GroupResult> GroupByMany<TElement>(this IEnumerable<TElement> source, ParsingConfig config, params string[] keySelectors)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><TElement></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Collections.Generic.IEnumerable<T></span> whose elements to group.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span>[]</td>
<td><span class="parametername">keySelectors</span></td>
<td><p><span class="xref">System.String</span> expressions to specify the keys for each element.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<a class="xref" href="System.Linq.Dynamic.Core.GroupResult.html">GroupResult</a>></td>
<td><p>A <span class="xref">System.Collections.Generic.IEnumerable<T></span> of type <a class="xref" href="System.Linq.Dynamic.Core.GroupResult.html">GroupResult</a> where each element represents a projection over a group, its key, and its subgroups.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TElement</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L874">View Source</a>
</span>
<a id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany*"></a>
<h4 id=your_sha256_hash_1_System_Collections_Generic_IEnumerable___0__System_String___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupByMany``1(System.Collections.Generic.IEnumerable{``0},System.String[])">GroupByMany<TElement>(IEnumerable<TElement>, String[])</h4>
<div class="markdown level1 summary"><p>Groups the elements of a sequence according to multiple specified key string functions
and creates a result value from each group (and subgroups) and its key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IEnumerable<GroupResult> GroupByMany<TElement>(this IEnumerable<TElement> source, params string[] keySelectors)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><TElement></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span>[]</td>
<td><span class="parametername">keySelectors</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><<a class="xref" href="System.Linq.Dynamic.Core.GroupResult.html">GroupResult</a>></td>
<td><p>A <span class="xref">System.Collections.Generic.IEnumerable<T></span> of type <a class="xref" href="System.Linq.Dynamic.Core.GroupResult.html">GroupResult</a> where each element represents a projection over a group, its key, and its subgroups.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TElement</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L966">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupJoin_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin*"></a>
<h4 id=your_sha256_hashyour_sha256_hashg_System_String_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])">GroupJoin(IQueryable, IEnumerable, String, String, String, Object[])</h4>
<div class="markdown level1 summary"><p>Correlates the elements of two sequences based on equality of keys and groups the results. The default equality comparer is used to compare keys.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupJoin(this IQueryable outer, IEnumerable inner, string outerKeySelector, string innerKeySelector, string resultSelector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">outer</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">inner</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">outerKeySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">innerKeySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> obtained by performing a grouped join on two sequences.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L929">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_GroupJoin_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashring_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.GroupJoin(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])">GroupJoin(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object[])</h4>
<div class="markdown level1 summary"><p>Correlates the elements of two sequences based on equality of keys and groups the results. The default equality comparer is used to compare keys.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable GroupJoin(this IQueryable outer, ParsingConfig config, IEnumerable inner, string outerKeySelector, string innerKeySelector, string resultSelector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">outer</span></td>
<td><p>The first sequence to join.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">inner</span></td>
<td><p>The sequence to join to the first sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">outerKeySelector</span></td>
<td><p>A dynamic function to extract the join key from each element of the first sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">innerKeySelector</span></td>
<td><p>A dynamic function to extract the join key from each element of the second sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td><p>A dynamic function to create a result element from an element from the first sequence and a collection of matching elements from the second sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicates as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> obtained by performing a grouped join on two sequences.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1026">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Join_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join*"></a>
<h4 id=your_sha256_hashyour_sha256_hashtem_String_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])">Join(IQueryable, IEnumerable, String, String, String, Object[])</h4>
<div class="markdown level1 summary"><p>Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Join(this IQueryable outer, IEnumerable inner, string outerKeySelector, string innerKeySelector, string resultSelector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">outer</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">inner</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">outerKeySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">innerKeySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> obtained by performing an inner join on two sequences.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L984">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Join_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashSystem_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Collections.IEnumerable,System.String,System.String,System.String,System.Object[])">Join(IQueryable, ParsingConfig, IEnumerable, String, String, String, Object[])</h4>
<div class="markdown level1 summary"><p>Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Join(this IQueryable outer, ParsingConfig config, IEnumerable inner, string outerKeySelector, string innerKeySelector, string resultSelector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">outer</span></td>
<td><p>The first sequence to join.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IEnumerable</span></td>
<td><span class="parametername">inner</span></td>
<td><p>The sequence to join to the first sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">outerKeySelector</span></td>
<td><p>A dynamic function to extract the join key from each element of the first sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">innerKeySelector</span></td>
<td><p>A dynamic function to extract the join key from each element of the second sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td><p>A dynamic function to create a result element from two matching elements.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicates as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> obtained by performing an inner join on two sequences.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1050">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Join_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_0__System_String_System_String_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join``1(System.Linq.IQueryable{``0},System.Collections.Generic.IEnumerable{``0},System.String,System.String,System.String,System.Object[])">Join<TElement>(IQueryable<TElement>, IEnumerable<TElement>, String, String, String, Object[])</h4>
<div class="markdown level1 summary"><p>Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TElement> Join<TElement>(this IQueryable<TElement> outer, IEnumerable<TElement> inner, string outerKeySelector, string innerKeySelector, string resultSelector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TElement></td>
<td><span class="parametername">outer</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><TElement></td>
<td><span class="parametername">inner</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">outerKeySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">innerKeySelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TElement></td>
<td><p>An <span class="xref">System.Linq.IQueryable<T></span> that has elements of type TResult obtained by performing an inner join on two sequences.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TElement</span></td>
<td><p>The type of the elements of both sequences, and the result.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashyour_sha256_hashemarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This overload only works on elements where both sequences and the resulting element match.</p>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1044">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Join_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashString_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Join``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.Collections.Generic.IEnumerable{``0},System.String,System.String,System.String,System.Object[])">Join<TElement>(IQueryable<TElement>, ParsingConfig, IEnumerable<TElement>, String, String, String, Object[])</h4>
<div class="markdown level1 summary"><p>Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TElement> Join<TElement>(this IQueryable<TElement> outer, ParsingConfig config, IEnumerable<TElement> inner, string outerKeySelector, string innerKeySelector, string resultSelector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TElement></td>
<td><span class="parametername">outer</span></td>
<td><p>The first sequence to join.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.Generic.IEnumerable</span><TElement></td>
<td><span class="parametername">inner</span></td>
<td><p>The sequence to join to the first sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">outerKeySelector</span></td>
<td><p>A dynamic function to extract the join key from each element of the first sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">innerKeySelector</span></td>
<td><p>A dynamic function to extract the join key from each element of the second sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td><p>A dynamic function to create a result element from two matching elements.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicates as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TElement></td>
<td><p>An <span class="xref">System.Linq.IQueryable<T></span> that has elements of type TResult obtained by performing an inner join on two sequences.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TElement</span></td>
<td><p>The type of the elements of both sequences, and the result.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashyour_sha256_hashString_System_String_System_Object____remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>This overload only works on elements where both sequences and the resulting element match.</p>
</div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1066">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Last_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last*"></a>
<h4 id=your_sha256_hashLinq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable)">Last(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the last element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object Last(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The last element in source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1085">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Last_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last*"></a>
<h4 id=your_sha256_hashyour_sha256_hashring_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Last(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the last element of a sequence that satisfies a specified condition.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object Last(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1118">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Last_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last*"></a>
<h4 id=your_sha256_hashLinq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">Last(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Returns the last element of a sequence that satisfies a specified condition.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object Last(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1102">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Last_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last*"></a>
<h4 id=your_sha256_hashLinq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Last(System.Linq.IQueryable,System.String,System.Object[])">Last(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the last element of a sequence that satisfies a specified condition.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object Last(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1138">View Source</a>
</span>
<a id=your_sha256_hasht_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault*"></a>
<h4 id=your_sha256_hasht_System_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable)">LastOrDefault(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the last element of a sequence, or a default value if the sequence contains no elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object LastOrDefault(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>default if source is empty; otherwise, the last element in source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1157">View Source</a>
</span>
<a id=your_sha256_hasht_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault*"></a>
<h4 id=your_sha256_hashyour_sha256_hashSystem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">LastOrDefault(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the last element of a sequence that satisfies a specified condition, or a default value if the sequence contains no elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object LastOrDefault(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1189">View Source</a>
</span>
<a id=your_sha256_hasht_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault*"></a>
<h4 id=your_sha256_hashyour_sha256_hashn_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">LastOrDefault(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Returns the last element of a sequence that satisfies a specified condition, or a default value if the sequence contains no elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object LastOrDefault(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1174">View Source</a>
</span>
<a id=your_sha256_hasht_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault*"></a>
<h4 id=your_sha256_hasht_System_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LastOrDefault(System.Linq.IQueryable,System.String,System.Object[])">LastOrDefault(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the last element of a sequence that satisfies a specified condition, or a default value if the sequence contains no elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object LastOrDefault(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1214">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_LongCount_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount*"></a>
<h4 id=your_sha256_hashstem_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable)">LongCount(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the number of elements in a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static long LongCount(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> that contains the elements to be counted.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int64</span></td>
<td><p>The number of elements in the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashstem_Linq_IQueryable__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result = queryable.LongCount();</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1237">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_LongCount_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount*"></a>
<h4 id=your_sha256_hashyour_sha256_hashem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">LongCount(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the number of elements in a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static long LongCount(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> that contains the elements to be counted.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int64</span></td>
<td><p>The number of elements in the specified sequence that satisfies a condition.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashem_String_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.LongCount("Income > 50");
var result2 = queryable.LongCount("Income > @0", 50);
var result3 = queryable.Select("Roles.LongCount()");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1262">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_LongCount_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount*"></a>
<h4 id=your_sha256_hashstem_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">LongCount(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Returns the number of elements in a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static long LongCount(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> that contains the elements to be counted.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int64</span></td>
<td><p>The number of elements in the specified sequence that satisfies a condition.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1251">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_LongCount_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount*"></a>
<h4 id=your_sha256_hashstem_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.LongCount(System.Linq.IQueryable,System.String,System.Object[])">LongCount(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the number of elements in a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static long LongCount(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int64</span></td>
<td><p>The number of elements in the specified sequence that satisfies a condition.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1287">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Max_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max*"></a>
<h4 id=your_sha256_hashinq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable)">Max(IQueryable)</h4>
<div class="markdown level1 summary"><p>Computes the max element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Max(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to calculate find the max for.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The max element in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashinq_IQueryable__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.Max();
var result2 = queryable.Select("Roles.Max()");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1309">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Max_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max*"></a>
<h4 id=your_sha256_hashyour_sha256_hashing_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Max(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Computes the max element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Max(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to calculate find the max for.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The max element in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashing_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result = queryable.Max("Income");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1335">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Max_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max*"></a>
<h4 id=your_sha256_hashinq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">Max(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Computes the max element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Max(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to calculate find the max for.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The max element in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1323">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Max_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max*"></a>
<h4 id=your_sha256_hashinq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Max(System.Linq.IQueryable,System.String,System.Object[])">Max(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Computes the max element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Max(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The max element in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1359">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Min_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min*"></a>
<h4 id=your_sha256_hashinq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable)">Min(IQueryable)</h4>
<div class="markdown level1 summary"><p>Computes the min element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Min(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to calculate find the min for.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The min element in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashinq_IQueryable__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.Min();
var result2 = queryable.Select("Roles.Min()");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1381">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Min_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min*"></a>
<h4 id=your_sha256_hashyour_sha256_hashing_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Min(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Computes the min element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Min(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to calculate find the min for.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The min element in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashing_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result = queryable.Min("Income");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1407">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Min_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min*"></a>
<h4 id=your_sha256_hashinq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">Min(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Computes the min element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Min(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to calculate find the min for.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The min element in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1395">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Min_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min*"></a>
<h4 id=your_sha256_hashinq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Min(System.Linq.IQueryable,System.String,System.Object[])">Min(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Computes the min element of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Min(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The min element in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1441">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OfType_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType*"></a>
<h4 id=your_sha256_hashyour_sha256_hashString_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String)">OfType(IQueryable, ParsingConfig, String)</h4>
<div class="markdown level1 summary"><p>Filters the elements of an <span class="xref">System.Linq.IQueryable</span> based on a specified type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable OfType(this IQueryable source, ParsingConfig config, string typeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements to filter.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">typeName</span></td>
<td><p>The type to filter the elements of the sequence on.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A collection that contains the elements from source that have the type.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1459">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OfType_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType*"></a>
<h4 id=your_sha256_hashm_Linq_IQueryable_System_String_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable,System.String)">OfType(IQueryable, String)</h4>
<div class="markdown level1 summary"><p>Filters the elements of an <span class="xref">System.Linq.IQueryable</span> based on a specified type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable OfType(this IQueryable source, string typeName)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements to filter.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">typeName</span></td>
<td><p>The type to filter the elements of the sequence on.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A collection that contains the elements from source that have the type.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1424">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OfType_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType*"></a>
<h4 id=your_sha256_hashm_Linq_IQueryable_System_Type_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OfType(System.Linq.IQueryable,System.Type)">OfType(IQueryable, Type)</h4>
<div class="markdown level1 summary"><p>Filters the elements of an <span class="xref">System.Linq.IQueryable</span> based on a specified type.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable OfType(this IQueryable source, Type type)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements to filter.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">type</span></td>
<td><p>The type to filter the elements of the sequence on.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A collection that contains the elements from source that have the type.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1558">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OrderBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_String_System_Collections_IComparer_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])">OrderBy(IQueryable, ParsingConfig, String, IComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Sorts the elements of a sequence in ascending or descending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable OrderBy(this IQueryable source, ParsingConfig config, string ordering, IComparer comparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IComparer</span></td>
<td><span class="parametername">comparer</span></td>
<td><p>The comparer to use.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1539">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OrderBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hash_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">OrderBy(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Sorts the elements of a sequence in ascending or descending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable OrderBy(this IQueryable source, ParsingConfig config, string ordering, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hash_String_System_Object____examples">Examples</h5>
<pre><code>var resultSingle = queryable.OrderBy("NumberProperty");
var resultSingleDescending = queryable.OrderBy("NumberProperty DESC");
var resultMultiple = queryable.OrderBy("NumberProperty, StringProperty DESC");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1622">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OrderBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashstem_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.String,System.Collections.IComparer,System.Object[])">OrderBy(IQueryable, String, IComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Sorts the elements of a sequence in ascending or descending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable OrderBy(this IQueryable source, string ordering, IComparer comparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Collections.IComparer</span></td>
<td><span class="parametername">comparer</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1616">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OrderBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy*"></a>
<h4 id=your_sha256_hashem_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy(System.Linq.IQueryable,System.String,System.Object[])">OrderBy(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Sorts the elements of a sequence in ascending or descending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable OrderBy(this IQueryable source, string ordering, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1505">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OrderBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashg_System_String_System_Collections_IComparer_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])">OrderBy<TSource>(IQueryable<TSource>, ParsingConfig, String, IComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Sorts the elements of a sequence in ascending or descending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable<TSource> OrderBy<TSource>(this IQueryable<TSource> source, ParsingConfig config, string ordering, IComparer comparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IComparer</span></td>
<td><span class="parametername">comparer</span></td>
<td><p>The comparer to use.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IQueryable<T></span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1484">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OrderBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashg_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">OrderBy<TSource>(IQueryable<TSource>, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Sorts the elements of a sequence in ascending or descending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable<TSource> OrderBy<TSource>(this IQueryable<TSource> source, ParsingConfig config, string ordering, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IQueryable<T></span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashg_System_String_System_Object____examples">Examples</h5>
<pre><code>var resultSingle = queryable.OrderBy<User>("NumberProperty");
var resultSingleDescending = queryable.OrderBy<User>("NumberProperty DESC");
var resultMultiple = queryable.OrderBy<User>("NumberProperty, StringProperty");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1519">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OrderBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashparer_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.String,System.Collections.IComparer,System.Object[])">OrderBy<TSource>(IQueryable<TSource>, String, IComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Sorts the elements of a sequence in ascending or descending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable<TSource> OrderBy<TSource>(this IQueryable<TSource> source, string ordering, IComparer comparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IComparer</span></td>
<td><span class="parametername">comparer</span></td>
<td><p>The comparer to use.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IQueryable<T></span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1490">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_OrderBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy*"></a>
<h4 id=your_sha256_hashystem_Linq_IQueryable___0__System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.OrderBy``1(System.Linq.IQueryable{``0},System.String,System.Object[])">OrderBy<TSource>(IQueryable<TSource>, String, Object[])</h4>
<div class="markdown level1 summary"><p>Sorts the elements of a sequence in ascending or descending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable<TSource> OrderBy<TSource>(this IQueryable<TSource> source, string ordering, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IQueryable<T></span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1637">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Page_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page*"></a>
<h4 id=your_sha256_hashLinq_IQueryable_System_Int32_System_Int32_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page(System.Linq.IQueryable,System.Int32,System.Int32)">Page(IQueryable, Int32, Int32)</h4>
<div class="markdown level1 summary"><p>Returns the elements as paged.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Page(this IQueryable source, int page, int pageSize)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The IQueryable to return elements from.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">page</span></td>
<td><p>The page to return.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">pageSize</span></td>
<td><p>The number of elements per page.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> that contains the paged elements.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1654">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Page_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page*"></a>
<h4 id=your_sha256_hashem_Linq_IQueryable___0__System_Int32_System_Int32_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Page``1(System.Linq.IQueryable{``0},System.Int32,System.Int32)">Page<TSource>(IQueryable<TSource>, Int32, Int32)</h4>
<div class="markdown level1 summary"><p>Returns the elements as paged.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TSource> Page<TSource>(this IQueryable<TSource> source, int page, int pageSize)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td><p>The IQueryable to return elements from.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">page</span></td>
<td><p>The page to return.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">pageSize</span></td>
<td><p>The number of elements per page.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IQueryable<T></span> that contains the paged elements.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1671">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_PageResult_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult*"></a>
<h4 id=your_sha256_hashyour_sha256_hashSystem_Int32__" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult(System.Linq.IQueryable,System.Int32,System.Int32,System.Nullable{System.Int32})">PageResult(IQueryable, Int32, Int32, Nullable<Int32>)</h4>
<div class="markdown level1 summary"><p>Returns the elements as paged and include the CurrentPage, PageCount, PageSize and RowCount.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static PagedResult PageResult(this IQueryable source, int page, int pageSize, int? rowCount = null)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The IQueryable to return elements from.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">page</span></td>
<td><p>The page to return.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">pageSize</span></td>
<td><p>The number of elements per page.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Nullable</span><<span class="xref">System.Int32</span>></td>
<td><span class="parametername">rowCount</span></td>
<td><p>If this optional parameter has been defined, this value is used as the RowCount instead of executing a Linq <code>Count()</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.PagedResult.html">PagedResult</a></td>
<td><p>PagedResult</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1700">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_PageResult_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult*"></a>
<h4 id=your_sha256_hashyour_sha256_hashullable_System_Int32__" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.PageResult``1(System.Linq.IQueryable{``0},System.Int32,System.Int32,System.Nullable{System.Int32})">PageResult<TSource>(IQueryable<TSource>, Int32, Int32, Nullable<Int32>)</h4>
<div class="markdown level1 summary"><p>Returns the elements as paged and include the CurrentPage, PageCount, PageSize and RowCount.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static PagedResult<TSource> PageResult<TSource>(this IQueryable<TSource> source, int page, int pageSize, int? rowCount = null)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td><p>The IQueryable to return elements from.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">page</span></td>
<td><p>The page to return.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">pageSize</span></td>
<td><p>The number of elements per page.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Nullable</span><<span class="xref">System.Int32</span>></td>
<td><span class="parametername">rowCount</span></td>
<td><p>If this optional parameter has been defined, this value is used as the RowCount instead of executing a Linq <code>Count()</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.PagedResult-1.html">PagedResult</a><TSource></td>
<td><p>PagedResult{TSource}</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1727">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Reverse_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Reverse*"></a>
<h4 id=your_sha256_hashem_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Reverse(System.Linq.IQueryable)">Reverse(IQueryable)</h4>
<div class="markdown level1 summary"><p>Inverts the order of the elements in a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Reverse(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to reverse.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements correspond to those of the input sequence in reverse order.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1750">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Select_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select*"></a>
<h4 id=your_sha256_hashyour_sha256_hashString_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Select(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence into a new form.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Select(this IQueryable source, ParsingConfig config, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to project.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td><p>A projection string expression to apply to each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking a projection string on each element of source.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashString_System_Object____examples">Examples</h5>
<pre><code>var singleField = queryable.Select("StringProperty");
var dynamicObject = queryable.Select("new (StringProperty1, StringProperty2 as OtherStringPropertyName)");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1834">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Select_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select*"></a>
<h4 id=your_sha256_hashyour_sha256_hashType_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])">Select(IQueryable, ParsingConfig, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence into a new class of type TResult.
Details see <a href="path_to_url">path_to_url
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Select(this IQueryable source, ParsingConfig config, Type resultType, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to project.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>The result type.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td><p>A projection string expression to apply to each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking a projection string on each element of source.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashType_System_String_System_Object____examples">Examples</h5>
<pre><code>var users = queryable.Select(typeof(User), "new (Username, Pwd as Password)");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1769">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Select_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select*"></a>
<h4 id=your_sha256_hashm_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.String,System.Object[])">Select(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence into a new form.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Select(this IQueryable source, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking a projection string on each element of source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1853">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Select_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select*"></a>
<h4 id=your_sha256_hashm_Linq_IQueryable_System_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select(System.Linq.IQueryable,System.Type,System.String,System.Object[])">Select(IQueryable, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence into a new class of type TResult.
Details see <a href="path_to_url">path_to_url
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Select(this IQueryable source, Type resultType, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking a projection string on each element of source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1791">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Select_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select*"></a>
<h4 id=your_sha256_hashyour_sha256_hashem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select``1(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Select<TResult>(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence into a new class of type TResult.
Details see <a href="path_to_url">path_to_url
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TResult> Select<TResult>(this IQueryable source, ParsingConfig config, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to project.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td><p>A projection string expression to apply to each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TResult></td>
<td><p>An <span class="xref">System.Linq.IQueryable<T></span> whose elements are the result of invoking a projection string on each element of source.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashem_String_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">var users = queryable.Select<User>("new (Username, Pwd as Password)");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1814">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Select_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select*"></a>
<h4 id=your_sha256_hashstem_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Select``1(System.Linq.IQueryable,System.String,System.Object[])">Select<TResult>(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence into a new class of type TResult.
Details see <a href="path_to_url">path_to_url
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TResult> Select<TResult>(this IQueryable source, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TResult></td>
<td><p>An <span class="xref">System.Linq.IQueryable<T></span> whose elements are the result of invoking a projection string on each element of source.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1874">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hashtem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">SelectMany(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable</span> and combines the resulting sequences into one sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SelectMany(this IQueryable source, ParsingConfig config, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to project.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td><p>A projection string expression to apply to each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking a one-to-many projection function on each element of the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashtem_String_System_Object____examples">Examples</h5>
<pre><code>var roles = users.SelectMany("Roles");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2025">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hashtem_String_System_String_System_Object___System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.Object[],System.Object[])">SelectMany(IQueryable, ParsingConfig, String, String, Object[], Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable</span>
and invokes a result selector function on each element therein. The resulting
values from each intermediate sequence are combined into a single, one-dimensional
sequence and returned.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SelectMany(this IQueryable source, ParsingConfig config, string collectionSelector, string resultSelector, object[] collectionSelectorArgs = null, params object[] resultSelectorArgs)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to project.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">collectionSelector</span></td>
<td><p>A projection function to apply to each element of the input sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td><p>A projection function to apply to each element of each intermediate sequence. Should only use x and y as parameter names.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">collectionSelectorArgs</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">resultSelectorArgs</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking the one-to-many
projection function <code data-dev-comment-type="paramref" class="paramref">collectionSelector</code> on each element of source and then mapping
each of those sequence elements and their corresponding source element to a result element.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashyour_sha256_hashes">Examples</h5>
<pre><code>// TODO</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2062">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hashct___System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.String,System.String,System.String,System.Object[],System.Object[])">SelectMany(IQueryable, ParsingConfig, String, String, String, String, Object[], Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable</span>
and invokes a result selector function on each element therein. The resulting
values from each intermediate sequence are combined into a single, one-dimensional
sequence and returned.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SelectMany(this IQueryable source, ParsingConfig config, string collectionSelector, string resultSelector, string collectionParameterName, string resultParameterName, object[] collectionSelectorArgs = null, params object[] resultSelectorArgs)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to project.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">collectionSelector</span></td>
<td><p>A projection function to apply to each element of the input sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td><p>A projection function to apply to each element of each intermediate sequence.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">collectionParameterName</span></td>
<td><p>The name from collectionParameter to use. Default is x.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultParameterName</span></td>
<td><p>The name from resultParameterName to use. Default is y.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">collectionSelectorArgs</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">resultSelectorArgs</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking the one-to-many
projection function <code data-dev-comment-type="paramref" class="paramref">collectionSelector</code> on each element of source and then mapping
each of those sequence elements and their corresponding source element to a result element.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashyour_sha256_hashct___System_Object____examples">Examples</h5>
<pre><code>// TODO</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1899">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hashtem_Type_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.Type,System.String,System.Object[])">SelectMany(IQueryable, ParsingConfig, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable</span> and combines the resulting sequences into one sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SelectMany(this IQueryable source, ParsingConfig config, Type resultType, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to project.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td><p>The result type.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td><p>A projection string expression to apply to each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking a one-to-many projection function on each element of the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashtem_Type_System_String_System_Object____examples">Examples</h5>
<pre><code>var permissions = users.SelectMany(typeof(Permission), "Roles.SelectMany(Permissions)");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1880">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hashystem_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.String,System.Object[])">SelectMany(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable</span> and combines the resulting sequences into one sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SelectMany(this IQueryable source, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking a one-to-many projection function on each element of the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2031">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hash__System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.String,System.String,System.Object[],System.Object[])">SelectMany(IQueryable, String, String, Object[], Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable</span>
and invokes a result selector function on each element therein. The resulting
values from each intermediate sequence are combined into a single, one-dimensional
sequence and returned.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SelectMany(this IQueryable source, string collectionSelector, string resultSelector, object[] collectionSelectorArgs = null, params object[] resultSelectorArgs)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">collectionSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">collectionSelectorArgs</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">resultSelectorArgs</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking the one-to-many
projection function <code data-dev-comment-type="paramref" class="paramref">collectionSelector</code> on each element of source and then mapping
each of those sequence elements and their corresponding source element to a result element.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2107">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hashSystem_String_System_Object___System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.String,System.String,System.String,System.String,System.Object[],System.Object[])">SelectMany(IQueryable, String, String, String, String, Object[], Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable</span>
and invokes a result selector function on each element therein. The resulting
values from each intermediate sequence are combined into a single, one-dimensional
sequence and returned.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SelectMany(this IQueryable source, string collectionSelector, string resultSelector, string collectionParameterName, string resultParameterName, object[] collectionSelectorArgs = null, params object[] resultSelectorArgs)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">collectionSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultSelector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">collectionParameterName</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">resultParameterName</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">collectionSelectorArgs</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">resultSelectorArgs</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking the one-to-many
projection function <code data-dev-comment-type="paramref" class="paramref">collectionSelector</code> on each element of source and then mapping
each of those sequence elements and their corresponding source element to a result element.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1910">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hash data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany(System.Linq.IQueryable,System.Type,System.String,System.Object[])">SelectMany(IQueryable, Type, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable</span> and combines the resulting sequences into one sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SelectMany(this IQueryable source, Type resultType, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">resultType</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> whose elements are the result of invoking a one-to-many projection function on each element of the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1971">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hashyour_sha256_hashSystem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany``1(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">SelectMany<TResult>(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable<T></span> and combines the resulting sequences into one sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TResult> SelectMany<TResult>(this IQueryable source, ParsingConfig config, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to project.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td><p>A projection string expression to apply to each element.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TResult></td>
<td><p>An <span class="xref">System.Linq.IQueryable<T></span> whose elements are the result of invoking a one-to-many projection function on each element of the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashSystem_String_System_Object____examples">Examples</h5>
<pre><code>var permissions = users.SelectMany<Permission>("Roles.SelectMany(Permissions)");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L1996">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SelectMany_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany*"></a>
<h4 id=your_sha256_hash1_System_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SelectMany``1(System.Linq.IQueryable,System.String,System.Object[])">SelectMany<TResult>(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Projects each element of a sequence to an <span class="xref">System.Linq.IQueryable<T></span> and combines the resulting sequences into one sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TResult> SelectMany<TResult>(this IQueryable source, string selector, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">selector</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TResult></td>
<td><p>An <span class="xref">System.Linq.IQueryable<T></span> whose elements are the result of invoking a one-to-many projection function on each element of the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TResult</span></td>
<td><p>The type of the result.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2125">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Single_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single*"></a>
<h4 id=your_sha256_hashm_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable)">Single(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the only element of a sequence, and throws an exception if there
is not exactly one element in the sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object Single(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> to return the single element of.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The single element of the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2146">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Single_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single*"></a>
<h4 id=your_sha256_hashyour_sha256_hashString_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Single(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the only element of a sequence that satisfies a specified condition, and throws an exception if there
is not exactly one element in the sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object Single(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2179">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Single_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single*"></a>
<h4 id=your_sha256_hashm_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">Single(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Returns the only element of a sequence that satisfies a specified condition, and throws an exception if there
is not exactly one element in the sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object Single(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2163">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Single_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single*"></a>
<h4 id=your_sha256_hashm_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Single(System.Linq.IQueryable,System.String,System.Object[])">Single(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the only element of a sequence that satisfies a specified condition, and throws an exception if there
is not exactly one element in the sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object Single(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2196">View Source</a>
</span>
<a id=your_sha256_hashult_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault*"></a>
<h4 id=your_sha256_hashult_System_Linq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable)">SingleOrDefault(IQueryable)</h4>
<div class="markdown level1 summary"><p>Returns the only element of a sequence, or a default value if the sequence
is empty; this method throws an exception if there is more than one element
in the sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object SingleOrDefault(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> to return the single element of.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The single element of the input sequence, or default if the sequence contains no elements.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2217">View Source</a>
</span>
<a id=your_sha256_hashult_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault*"></a>
<h4 id=your_sha256_hashyour_sha256_hashg_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">SingleOrDefault(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the only element of a sequence that satisfies a specified condition or a default value if the sequence
is empty; and throws an exception if there is not exactly one element in the sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object SingleOrDefault(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2250">View Source</a>
</span>
<a id=your_sha256_hashult_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault*"></a>
<h4 id=your_sha256_hashyour_sha256_hashion_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">SingleOrDefault(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Returns the only element of a sequence that satisfies a specified condition or a default value if the sequence
is empty; and throws an exception if there is not exactly one element in the sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object SingleOrDefault(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The <span class="xref">System.Linq.IQueryable</span> to return the last element of.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2234">View Source</a>
</span>
<a id=your_sha256_hashult_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault*"></a>
<h4 id=your_sha256_hashult_System_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SingleOrDefault(System.Linq.IQueryable,System.String,System.Object[])">SingleOrDefault(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns the only element of a sequence that satisfies a specified condition or a default value if the sequence
is empty; and throws an exception if there is not exactly one element in the sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static object SingleOrDefault(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The first element in source that passes the test in predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2271">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Skip_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Skip*"></a>
<h4 id=your_sha256_hashLinq_IQueryable_System_Int32_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Skip(System.Linq.IQueryable,System.Int32)">Skip(IQueryable, Int32)</h4>
<div class="markdown level1 summary"><p>Bypasses a specified number of elements in a sequence and then returns the remaining elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Skip(this IQueryable source, int count)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> to return elements from.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">count</span></td>
<td><p>The number of elements to skip before returning the remaining elements.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> that contains elements that occur after the specified index in the input sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2302">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SkipWhile_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile*"></a>
<h4 id=your_sha256_hashyour_sha256_hashem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">SkipWhile(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SkipWhile(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence to check for being empty.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains elements from source starting at the first element in the linear series that does not pass the test specified by predicate.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashem_String_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.SkipWhile("Income > 50");
var result2 = queryable.SkipWhile("Income > @0", 50);</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2315">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_SkipWhile_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile*"></a>
<h4 id=your_sha256_hashstem_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.SkipWhile(System.Linq.IQueryable,System.String,System.Object[])">SkipWhile(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable SkipWhile(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains elements from source starting at the first element in the linear series that does not pass the test specified by predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2334">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Sum_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum*"></a>
<h4 id=your_sha256_hashinq_IQueryable_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable)">Sum(IQueryable)</h4>
<div class="markdown level1 summary"><p>Computes the sum of a sequence of numeric values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Sum(this IQueryable source)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of numeric values to calculate the sum of.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The sum of the values in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashinq_IQueryable__examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.Sum();
var result2 = queryable.Select("Roles.Sum()");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2357">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Sum_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum*"></a>
<h4 id=your_sha256_hashyour_sha256_hashing_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Sum(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Computes the sum of a sequence of numeric values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Sum(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of numeric values to calculate the sum of.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The sum of the values in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashing_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result = queryable.Sum("Income");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2385">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Sum_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum*"></a>
<h4 id=your_sha256_hashinq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">Sum(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Computes the sum of a sequence of numeric values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Sum(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of numeric values to calculate the sum of.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The sum of the values in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2373">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Sum_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum*"></a>
<h4 id=your_sha256_hashinq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Sum(System.Linq.IQueryable,System.String,System.Object[])">Sum(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Computes the sum of a sequence of numeric values.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[PublicAPI]
public static object Sum(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td><p>The sum of the values in the sequence.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2405">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Take_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Take*"></a>
<h4 id=your_sha256_hashLinq_IQueryable_System_Int32_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Take(System.Linq.IQueryable,System.Int32)">Take(IQueryable, Int32)</h4>
<div class="markdown level1 summary"><p>Returns a specified number of contiguous elements from the start of a sequence.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Take(this IQueryable source, int count)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>The sequence to return elements from.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">count</span></td>
<td><p>The number of elements to return.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> that contains the specified number of elements from the start of source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2432">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_TakeWhile_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile*"></a>
<h4 id=your_sha256_hashyour_sha256_hashem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">TakeWhile(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns elements from a sequence as long as a specified condition is true.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable TakeWhile(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence to check for being empty.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>A function to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains elements from the input sequence occurring before the element at which the test specified by predicate no longer passes.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashem_String_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">IQueryable queryable = employees.AsQueryable();
var result1 = queryable.TakeWhile("Income > 50");
var result2 = queryable.TakeWhile("Income > @0", 50);</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2445">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_TakeWhile_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile*"></a>
<h4 id=your_sha256_hashstem_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.TakeWhile(System.Linq.IQueryable,System.String,System.Object[])">TakeWhile(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Returns elements from a sequence as long as a specified condition is true.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable TakeWhile(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>An <span class="xref">System.Linq.IQueryable</span> that contains elements from the input sequence occurring before the element at which the test specified by predicate no longer passes.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2542">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_ThenBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashSystem_String_System_Collections_IComparer_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])">ThenBy(IOrderedQueryable, ParsingConfig, String, IComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable ThenBy(this IOrderedQueryable source, ParsingConfig config, string ordering, IComparer comparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IComparer</span></td>
<td><span class="parametername">comparer</span></td>
<td><p>The comparer to use.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2528">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_ThenBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashSystem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">ThenBy(IOrderedQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable ThenBy(this IOrderedQueryable source, ParsingConfig config, string ordering, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashSystem_String_System_Object____examples">Examples</h5>
<pre><code>var result = queryable.OrderBy("LastName");
var resultSingle = result.OrderBy("NumberProperty");
var resultSingleDescending = result.OrderBy("NumberProperty DESC");
var resultMultiple = result.OrderBy("NumberProperty, StringProperty DESC");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2590">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_ThenBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashrer_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.String,System.Collections.IComparer,System.Object[])">ThenBy(IOrderedQueryable, String, IComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable ThenBy(this IOrderedQueryable source, string ordering, IComparer comparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Collections.IComparer</span></td>
<td><span class="parametername">comparer</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2584">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_ThenBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy*"></a>
<h4 id=your_sha256_hashm_Linq_IOrderedQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy(System.Linq.IOrderedQueryable,System.String,System.Object[])">ThenBy(IOrderedQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable ThenBy(this IOrderedQueryable source, string ordering, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2493">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_ThenBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashyour_sha256_hash___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Collections.IComparer,System.Object[])">ThenBy<TSource>(IOrderedQueryable<TSource>, ParsingConfig, String, IComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable<TSource> ThenBy<TSource>(this IOrderedQueryable<TSource> source, ParsingConfig config, string ordering, IComparer comparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IComparer</span></td>
<td><span class="parametername">comparer</span></td>
<td><p>The comparer to use.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IOrderedQueryable<T></span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2472">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_ThenBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashgConfig_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">ThenBy<TSource>(IOrderedQueryable<TSource>, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable<TSource> ThenBy<TSource>(this IOrderedQueryable<TSource> source, ParsingConfig config, string ordering, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IOrderedQueryable<T></span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashgConfig_System_String_System_Object____examples">Examples</h5>
<pre><code>var result = queryable.OrderBy<User>("LastName");
var resultSingle = result.ThenBy<User>("NumberProperty");
var resultSingleDescending = result.ThenBy<User>("NumberProperty DESC");
var resultMultiple = result.ThenBy<User>("NumberProperty, StringProperty");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2507">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_ThenBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy*"></a>
<h4 id=your_sha256_hashyour_sha256_hashs_IComparer_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.String,System.Collections.IComparer,System.Object[])">ThenBy<TSource>(IOrderedQueryable<TSource>, String, IComparer, Object[])</h4>
<div class="markdown level1 summary"><p>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable<TSource> ThenBy<TSource>(this IOrderedQueryable<TSource> source, string ordering, IComparer comparer, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td><p>A sequence of values to order.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td><p>An expression string to indicate values to order by.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Collections.IComparer</span></td>
<td><span class="parametername">comparer</span></td>
<td><p>The comparer to use.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IOrderedQueryable<T></span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2478">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_ThenBy_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy*"></a>
<h4 id=your_sha256_hashstem_Linq_IOrderedQueryable___0__System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.ThenBy``1(System.Linq.IOrderedQueryable{``0},System.String,System.Object[])">ThenBy<TSource>(IOrderedQueryable<TSource>, String, Object[])</h4>
<div class="markdown level1 summary"><p>Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IOrderedQueryable<TSource> ThenBy<TSource>(this IOrderedQueryable<TSource> source, string ordering, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">ordering</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IOrderedQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IOrderedQueryable<T></span> whose elements are sorted according to the specified <code data-dev-comment-type="paramref" class="paramref">ordering</code>.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2644">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Where_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where*"></a>
<h4 id=your_sha256_hashyour_sha256_hashtring_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable,System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Where(IQueryable, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Filters a sequence of values based on a predicate.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Where(this IQueryable source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> to filter.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>An expression string to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> that contains elements from the input sequence that satisfy the condition specified by predicate.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashtring_System_Object____examples">Examples</h5>
<pre><code>var result1 = queryable.Where("NumberProperty = 1");
var result2 = queryable.Where("NumberProperty = @0", 1);
var result3 = queryable.Where("StringProperty = null");
var result4 = queryable.Where("StringProperty = \"abc\"");
var result5 = queryable.Where("StringProperty = @0", "abc");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2669">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Where_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where*"></a>
<h4 id=your_sha256_hash_Linq_IQueryable_System_Linq_Expressions_LambdaExpression_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">Where(IQueryable, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Filters a sequence of values based on a predicate.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Where(this IQueryable source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> to filter.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> that contains elements from the input sequence that satisfy the condition specified by LambdaExpression.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2658">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Where_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where*"></a>
<h4 id=your_sha256_hash_Linq_IQueryable_System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where(System.Linq.IQueryable,System.String,System.Object[])">Where(IQueryable, String, Object[])</h4>
<div class="markdown level1 summary"><p>Filters a sequence of values based on a predicate.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable Where(this IQueryable source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> that contains elements from the input sequence that satisfy the condition specified by predicate.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2616">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Where_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where*"></a>
<h4 id=your_sha256_hashyour_sha256_hashSystem_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where``1(System.Linq.IQueryable{``0},System.Linq.Dynamic.Core.ParsingConfig,System.String,System.Object[])">Where<TSource>(IQueryable<TSource>, ParsingConfig, String, Object[])</h4>
<div class="markdown level1 summary"><p>Filters a sequence of values based on a predicate.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TSource> Where<TSource>(this IQueryable<TSource> source, ParsingConfig config, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td><p>A <span class="xref">System.Linq.IQueryable<T></span> to filter.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td><span class="parametername">config</span></td>
<td><p>The <a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a>.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td><p>An expression string to test each element for a condition.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td><p>An object array that contains zero or more objects to insert into the predicate as parameters. Similar to the way String.Format formats strings.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IQueryable<T></span> that contains elements from the input sequence that satisfy the condition specified by predicate.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
<h5 id=your_sha256_hashyour_sha256_hashSystem_String_System_Object____examples">Examples</h5>
<pre><code class="lang-cs">var result1 = queryable.Where("NumberProperty = 1");
var result2 = queryable.Where("NumberProperty = @0", 1);
var result3 = queryable.Where("StringProperty = null");
var result4 = queryable.Where("StringProperty = \"abc\"");
var result5 = queryable.Where("StringProperty = @0", "abc");</code></pre>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2679">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Where_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where*"></a>
<h4 id=your_sha256_hashyour_sha256_hashn_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where``1(System.Linq.IQueryable{``0},System.Linq.Expressions.LambdaExpression)">Where<TSource>(IQueryable<TSource>, LambdaExpression)</h4>
<div class="markdown level1 summary"><p>Filters a sequence of values based on a predicate.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TSource> Where<TSource>(this IQueryable<TSource> source, LambdaExpression lambda)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Linq.Expressions.LambdaExpression</span></td>
<td><span class="parametername">lambda</span></td>
<td><p>A cached Lambda Expression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IQueryable</span> that contains elements from the input sequence that satisfy the condition specified by LambdaExpression.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L2622">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_DynamicQueryableExtensions_Where_" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where*"></a>
<h4 id=your_sha256_hashtem_Linq_IQueryable___0__System_String_System_Object___" data-uid="System.Linq.Dynamic.Core.DynamicQueryableExtensions.Where``1(System.Linq.IQueryable{``0},System.String,System.Object[])">Where<TSource>(IQueryable<TSource>, String, Object[])</h4>
<div class="markdown level1 summary"><p>Filters a sequence of values based on a predicate.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static IQueryable<TSource> Where<TSource>(this IQueryable<TSource> source, string predicate, params object[] args)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><span class="parametername">source</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">predicate</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td><span class="parametername">args</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span><TSource></td>
<td><p>A <span class="xref">System.Linq.IQueryable<T></span> that contains elements from the input sequence that satisfy the condition specified by predicate.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="parametername">TSource</span></td>
<td><p>The type of the elements of source.</p>
</td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L23" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.DynamicQueryableExtensions.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 101,877
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class ParsingConfig
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class ParsingConfig
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.ParsingConfig">
<h1 id="System_Linq_Dynamic_Core_ParsingConfig" data-uid="System.Linq.Dynamic.Core.ParsingConfig" class="text-break">Class ParsingConfig
</h1>
<div class="markdown level0 summary"><p>Configuration class for System.Linq.Dynamic.Core.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">ParsingConfig</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_ParsingConfig_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class ParsingConfig</code></pre>
</div>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L141">View Source</a>
</span>
<a id=your_sha256_hash_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.AllowNewToEvaluateAnyType*"></a>
<h4 id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.ParsingConfig.AllowNewToEvaluateAnyType">AllowNewToEvaluateAnyType</h4>
<div class="markdown level1 summary"><p>Allows the New() keyword to evaluate any available Type.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool AllowNewToEvaluateAnyType { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L117">View Source</a>
</span>
<a id=your_sha256_hash_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.AreContextKeywordsEnabled*"></a>
<h4 id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.ParsingConfig.AreContextKeywordsEnabled">AreContextKeywordsEnabled</h4>
<div class="markdown level1 summary"><p>Determines if the context keywords (it, parent, and root) are valid and usable inside a Dynamic Linq string expression.<br>
Does not affect the usability of the equivalent context symbols ($, ^ and ~).</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool AreContextKeywordsEnabled { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L243">View Source</a>
</span>
<a id=your_sha256_hashnfig_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.ConstantExpressionCacheConfig*"></a>
<h4 id=your_sha256_hashnfig" data-uid="System.Linq.Dynamic.Core.ParsingConfig.ConstantExpressionCacheConfig">ConstantExpressionCacheConfig</h4>
<div class="markdown level1 summary"><p>Caches constant expressions to enhance performance. Periodic cleanup is performed to manage cache size, governed by this configuration.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public CacheConfig ConstantExpressionCacheConfig { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html">CacheConfig</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L276">View Source</a>
</span>
<a id=your_sha256_hashparison_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.ConvertObjectToSupportComparison*"></a>
<h4 id=your_sha256_hashparison" data-uid="System.Linq.Dynamic.Core.ParsingConfig.ConvertObjectToSupportComparison">ConvertObjectToSupportComparison</h4>
<div class="markdown level1 summary"><p>Converts typeof(object) to the correct type to allow comparison (Equal, NotEqual, GreaterThan, GreaterThanEqual, LessThan and LessThanEqual).</p>
<p>Default value is <code>false</code>.</p>
<p>When set to <code>true</code>, the following code will work correct:
<example><p>
<pre><code>class Person
{
public string Name { get; set; }
public object Age { get; set; }
}
var persons = new[]
{
new Person { Name = "Foo", Age = 99 },
new Person { Name = "Bar", Age = 33 }
}.AsQueryable();
var config = new ParsingConfig
{
ConvertObjectToSupportComparison = true
};
var results = persons.Where(config, "Age > 50").ToList();</code></pre>
</example>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool ConvertObjectToSupportComparison { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L51">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_CustomTypeProvider_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.CustomTypeProvider*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_CustomTypeProvider" data-uid="System.Linq.Dynamic.Core.ParsingConfig.CustomTypeProvider">CustomTypeProvider</h4>
<div class="markdown level1 summary"><p>Gets or sets the <a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider.html">IDynamicLinkCustomTypeProvider</a>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IDynamicLinkCustomTypeProvider CustomTypeProvider { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider.html">IDynamicLinkCustomTypeProvider</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L187">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_DateTimeIsParsedAsUTC_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DateTimeIsParsedAsUTC*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_DateTimeIsParsedAsUTC" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DateTimeIsParsedAsUTC">DateTimeIsParsedAsUTC</h4>
<div class="markdown level1 summary"><p>By default, a DateTime (like 'Fri, 10 May 2019 11:03:17 GMT') is parsed as local time.
Use this flag to parse all DateTime strings as UTC.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool DateTimeIsParsedAsUTC { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L23">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_Default_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.Default*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_Default" data-uid="System.Linq.Dynamic.Core.ParsingConfig.Default">Default</h4>
<div class="markdown level1 summary"><p>Default ParsingConfig</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static ParsingConfig Default { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L36">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_DefaultCosmosDb_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DefaultCosmosDb*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_DefaultCosmosDb" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DefaultCosmosDb">DefaultCosmosDb</h4>
<div class="markdown level1 summary"><p>Default ParsingConfig for CosmosDb</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static ParsingConfig DefaultCosmosDb { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L28">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_DefaultEFCore21_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DefaultEFCore21*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_DefaultEFCore21" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DefaultEFCore21">DefaultEFCore21</h4>
<div class="markdown level1 summary"><p>Default ParsingConfig for EntityFramework Core 2.1 and higher</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static ParsingConfig DefaultEFCore21 { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L163">View Source</a>
</span>
<a id=your_sha256_hashxAccessorFallback_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DisableMemberAccessToIndexAccessorFallback*"></a>
<h4 id=your_sha256_hashxAccessorFallback" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DisableMemberAccessToIndexAccessorFallback">DisableMemberAccessToIndexAccessorFallback</h4>
<div class="markdown level1 summary"><p>By default, when a member is not found in a type and the type has a string based index accessor it will be parsed as an index accessor.
Use this flag to disable this behaviour and have parsing fail when parsing an expression where a member access on a non-existing member happens.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool DisableMemberAccessToIndexAccessorFallback { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L238">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_DisallowNewKeyword_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DisallowNewKeyword*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_DisallowNewKeyword" data-uid="System.Linq.Dynamic.Core.ParsingConfig.DisallowNewKeyword">DisallowNewKeyword</h4>
<div class="markdown level1 summary"><p>Disallows the New() keyword to be used to construct a class.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool DisallowNewKeyword { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L126">View Source</a>
</span>
<a id=your_sha256_hash_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.EvaluateGroupByAtDatabase*"></a>
<h4 id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.ParsingConfig.EvaluateGroupByAtDatabase">EvaluateGroupByAtDatabase</h4>
<div class="markdown level1 summary"><p>Gets or sets a value indicating whether the EntityFramework version supports evaluating GroupBy at database level.
See <a href="path_to_url#linq-groupby-translation">path_to_url#linq-groupby-translation</a>
Remark: when this setting is set to <code>true</code>, make sure to supply this ParsingConfig as first parameter on the extension methods.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool EvaluateGroupByAtDatabase { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L79">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_ExpressionPromoter_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.ExpressionPromoter*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_ExpressionPromoter" data-uid="System.Linq.Dynamic.Core.ParsingConfig.ExpressionPromoter">ExpressionPromoter</h4>
<div class="markdown level1 summary"><p>Gets or sets the <a class="xref" href="System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html">IExpressionPromoter</a>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IExpressionPromoter ExpressionPromoter { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html">IExpressionPromoter</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L46">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_IsCaseSensitive_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.IsCaseSensitive*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_IsCaseSensitive" data-uid="System.Linq.Dynamic.Core.ParsingConfig.IsCaseSensitive">IsCaseSensitive</h4>
<div class="markdown level1 summary"><p>Gets or sets if parameter, method, and properties resolution should be case-sensitive or not.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool IsCaseSensitive { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L74">View Source</a>
</span>
<a id=your_sha256_hashromCurrentDomainBaseDirectory_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory*"></a>
<h4 id=your_sha256_hashromCurrentDomainBaseDirectory" data-uid="System.Linq.Dynamic.Core.ParsingConfig.LoadAdditionalAssembliesFromCurrentDomainBaseDirectory">LoadAdditionalAssembliesFromCurrentDomainBaseDirectory</h4>
<div class="markdown level1 summary"><p>Load additional assemblies from the current domain base directory.
Note: only used when full .NET Framework and .NET Core App 2.x and higher.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool LoadAdditionalAssembliesFromCurrentDomainBaseDirectory { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L206">View Source</a>
</span>
<a id=your_sha256_hashValueForNonNullableValueTypes_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes*"></a>
<h4 id=your_sha256_hashValueForNonNullableValueTypes" data-uid="System.Linq.Dynamic.Core.ParsingConfig.NullPropagatingUseDefaultValueForNonNullableValueTypes">NullPropagatingUseDefaultValueForNonNullableValueTypes</h4>
<div class="markdown level1 summary"><p>When using the NullPropagating function np(...), use a "default value" for non-nullable value types instead of "null value".</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool NullPropagatingUseDefaultValueForNonNullableValueTypes { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L194">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_NumberParseCulture_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.NumberParseCulture*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_NumberParseCulture" data-uid="System.Linq.Dynamic.Core.ParsingConfig.NumberParseCulture">NumberParseCulture</h4>
<div class="markdown level1 summary"><p>The number parsing culture.</p>
<p>Default value is CultureInfo.InvariantCulture</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public CultureInfo NumberParseCulture { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Globalization.CultureInfo</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L224">View Source</a>
</span>
<a id=your_sha256_hashOverTheType_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.PrioritizePropertyOrFieldOverTheType*"></a>
<h4 id=your_sha256_hashOverTheType" data-uid="System.Linq.Dynamic.Core.ParsingConfig.PrioritizePropertyOrFieldOverTheType">PrioritizePropertyOrFieldOverTheType</h4>
<div class="markdown level1 summary"><p>When the type and property have the same name the parser takes the property instead of type when this setting is set to <code>true</code>.
This setting is also used for calling ExtensionMethods.</p>
<p>Default value is <code>true</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool PrioritizePropertyOrFieldOverTheType { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L95">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_QueryableAnalyzer_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.QueryableAnalyzer*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_QueryableAnalyzer" data-uid="System.Linq.Dynamic.Core.ParsingConfig.QueryableAnalyzer">QueryableAnalyzer</h4>
<div class="markdown level1 summary"><p>Gets or sets the <a class="xref" href="System.Linq.Dynamic.Core.IQueryableAnalyzer.html">IQueryableAnalyzer</a>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IQueryableAnalyzer QueryableAnalyzer { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.IQueryableAnalyzer.html">IQueryableAnalyzer</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L155">View Source</a>
</span>
<a id=your_sha256_hashssionNames_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.RenameEmptyParameterExpressionNames*"></a>
<h4 id=your_sha256_hashssionNames" data-uid="System.Linq.Dynamic.Core.ParsingConfig.RenameEmptyParameterExpressionNames">RenameEmptyParameterExpressionNames</h4>
<div class="markdown level1 summary"><p>Prevents any System.Linq.Expressions.ParameterExpression.Name value from being empty by substituting a random 16 character word.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool RenameEmptyParameterExpressionNames { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L148">View Source</a>
</span>
<a id=your_sha256_hash_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.RenameParameterExpression*"></a>
<h4 id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.ParsingConfig.RenameParameterExpression">RenameParameterExpression</h4>
<div class="markdown level1 summary"><p>Renames the (Typed)ParameterExpression empty Name to the correct supplied name from <code>it</code>.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool RenameParameterExpression { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L172">View Source</a>
</span>
<a id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.ParsingConfig.ResolveTypesBySimpleName*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_ResolveTypesBySimpleName" data-uid="System.Linq.Dynamic.Core.ParsingConfig.ResolveTypesBySimpleName">ResolveTypesBySimpleName</h4>
<div class="markdown level1 summary"><p>By default, finding types by a simple name is not supported.
Use this flag to use the CustomTypeProvider to resolve types by a simple name like "Employee" instead of "MyDatabase.Entities.Employee".
Note that a first matching type is returned and this functionality needs to scan all types from all assemblies, so use with caution.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool ResolveTypesBySimpleName { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L282">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_StringLiteralParsing_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.StringLiteralParsing*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_StringLiteralParsing" data-uid="System.Linq.Dynamic.Core.ParsingConfig.StringLiteralParsing">StringLiteralParsing</h4>
<div class="markdown level1 summary"><p>Defines the type of string literal parsing that will be performed.
Default value is <code>StringLiteralParsingType.Default</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public StringLiteralParsingType StringLiteralParsing { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="System.Linq.Dynamic.Core.Config.StringLiteralParsingType.html">StringLiteralParsingType</a></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L216">View Source</a>
</span>
<a id=your_sha256_hashifiedTypeAsString_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.SupportCastingToFullyQualifiedTypeAsString*"></a>
<h4 id=your_sha256_hashifiedTypeAsString" data-uid="System.Linq.Dynamic.Core.ParsingConfig.SupportCastingToFullyQualifiedTypeAsString">SupportCastingToFullyQualifiedTypeAsString</h4>
<div class="markdown level1 summary"><p>Support casting to a full qualified type using a string (double-quoted value).</p>
<pre><code>var result = queryable.Select($"\"System.DateTime\"(LastUpdate)");</code></pre>
<p>Default value is <code>true</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool SupportCastingToFullyQualifiedTypeAsString { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L231">View Source</a>
</span>
<a id=your_sha256_hash_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.SupportDotInPropertyNames*"></a>
<h4 id=your_sha256_hash data-uid="System.Linq.Dynamic.Core.ParsingConfig.SupportDotInPropertyNames">SupportDotInPropertyNames</h4>
<div class="markdown level1 summary"><p>Support a "." in a property-name. Used in the 'new (a.b as a.b)' syntax.</p>
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool SupportDotInPropertyNames { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L179">View Source</a>
</span>
<a id=your_sha256_hashstemNamespace_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.SupportEnumerationsFromSystemNamespace*"></a>
<h4 id=your_sha256_hashstemNamespace" data-uid="System.Linq.Dynamic.Core.ParsingConfig.SupportEnumerationsFromSystemNamespace">SupportEnumerationsFromSystemNamespace</h4>
<div class="markdown level1 summary"><p>Support enumeration-types from the System namespace in mscorlib. An example could be "StringComparison".</p>
<p>Default value is <code>true</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool SupportEnumerationsFromSystemNamespace { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L199">View Source</a>
</span>
<a id="System_Linq_Dynamic_Core_ParsingConfig_TypeConverters_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.TypeConverters*"></a>
<h4 id="System_Linq_Dynamic_Core_ParsingConfig_TypeConverters" data-uid="System.Linq.Dynamic.Core.ParsingConfig.TypeConverters">TypeConverters</h4>
<div class="markdown level1 summary"><p>Additional TypeConverters</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IDictionary<Type, TypeConverter> TypeConverters { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IDictionary</span><<span class="xref">System.Type</span>, <span class="xref">System.ComponentModel.TypeConverter</span>></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L134">View Source</a>
</span>
<a id=your_sha256_hashnamicQuery_" data-uid="System.Linq.Dynamic.Core.ParsingConfig.UseParameterizedNamesInDynamicQuery*"></a>
<h4 id=your_sha256_hashnamicQuery" data-uid="System.Linq.Dynamic.Core.ParsingConfig.UseParameterizedNamesInDynamicQuery">UseParameterizedNamesInDynamicQuery</h4>
<div class="markdown level1 summary"><p>Use Parameterized Names in generated dynamic SQL query.
See <a href="path_to_url">path_to_url
<p>Default value is <code>false</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool UseParameterizedNamesInDynamicQuery { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L14" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.ParsingConfig.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 12,437
|
```html
<div id="sidetoggle">
<div>
<div class="sidefilter">
<form class="toc-filter">
<span class="glyphicon glyphicon-filter filter-icon"></span>
<span class="glyphicon glyphicon-remove clear-icon" id="toc_filter_clear"></span>
<input type="text" id="toc_filter_input" placeholder="Enter here to filter..." onkeypress="if(event.keyCode==13) {return false;}">
</form>
</div>
<div class="sidetoc">
<div class="toc" id="toc">
<ul class="nav level1">
<li>
<span class="expand-stub"></span>
<a href="System.html" name="" title="System">System</a>
<ul class="nav level2">
<li>
<a href="System.Tuple-2.html" name="" title="Tuple<T1, T2>">Tuple<T1, T2></a>
</li>
</ul>
</li>
<li>
<span class="expand-stub"></span>
<a href="System.Linq.Dynamic.Core.html" name="" title="System.Linq.Dynamic.Core">System.Linq.Dynamic.Core</a>
<ul class="nav level2">
<li>
<a href="System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.html" name="" title="DefaultQueryableAnalyzer">DefaultQueryableAnalyzer</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.DynamicClass.html" name="" title="DynamicClass">DynamicClass</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.DynamicClassFactory.html" name="" title="DynamicClassFactory">DynamicClassFactory</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html" name="" title="DynamicEnumerableExtensions">DynamicEnumerableExtensions</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.DynamicExpressionParser.html" name="" title="DynamicExpressionParser">DynamicExpressionParser</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.DynamicProperty.html" name="" title="DynamicProperty">DynamicProperty</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.DynamicQueryableExtensions.html" name="" title="DynamicQueryableExtensions">DynamicQueryableExtensions</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.ExtensibilityPoint.html" name="" title="ExtensibilityPoint">ExtensibilityPoint</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.GroupResult.html" name="" title="GroupResult">GroupResult</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.IAssemblyHelper.html" name="" title="IAssemblyHelper">IAssemblyHelper</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.IQueryableAnalyzer.html" name="" title="IQueryableAnalyzer">IQueryableAnalyzer</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.PagedResult.html" name="" title="PagedResult">PagedResult</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.PagedResult-1.html" name="" title="PagedResult<TSource>">PagedResult<TSource></a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.ParsingConfig.html" name="" title="ParsingConfig">ParsingConfig</a>
</li>
</ul>
</li>
<li>
<span class="expand-stub"></span>
<a href="System.Linq.Dynamic.Core.Config.html" name="" title="System.Linq.Dynamic.Core.Config">System.Linq.Dynamic.Core.Config</a>
<ul class="nav level2">
<li>
<a href="System.Linq.Dynamic.Core.Config.StringLiteralParsingType.html" name="" title="StringLiteralParsingType">StringLiteralParsingType</a>
</li>
</ul>
</li>
<li>
<span class="expand-stub"></span>
<a href="System.Linq.Dynamic.Core.CustomTypeProviders.html" name="" title="System.Linq.Dynamic.Core.CustomTypeProviders">System.Linq.Dynamic.Core.CustomTypeProviders</a>
<ul class="nav level2">
<li>
<a href="System.Linq.Dynamic.Core.CustomTypeProviders.AbstractDynamicLinqCustomTypeProvider.html" name="" title="AbstractDynamicLinqCustomTypeProvider">AbstractDynamicLinqCustomTypeProvider</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.CustomTypeProviders.DefaultDynamicLinqCustomTypeProvider.html" name="" title="DefaultDynamicLinqCustomTypeProvider">DefaultDynamicLinqCustomTypeProvider</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.CustomTypeProviders.DynamicLinqTypeAttribute.html" name="" title="DynamicLinqTypeAttribute">DynamicLinqTypeAttribute</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinkCustomTypeProvider.html" name="" title="IDynamicLinkCustomTypeProvider">IDynamicLinkCustomTypeProvider</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.CustomTypeProviders.IDynamicLinqCustomTypeProvider.html" name="" title="IDynamicLinqCustomTypeProvider">IDynamicLinqCustomTypeProvider</a>
</li>
</ul>
</li>
<li>
<span class="expand-stub"></span>
<a href="System.Linq.Dynamic.Core.Exceptions.html" name="" title="System.Linq.Dynamic.Core.Exceptions">System.Linq.Dynamic.Core.Exceptions</a>
<ul class="nav level2">
<li>
<a href="System.Linq.Dynamic.Core.Exceptions.ParseException.html" name="" title="ParseException">ParseException</a>
</li>
</ul>
</li>
<li>
<span class="expand-stub"></span>
<a href="System.Linq.Dynamic.Core.Parser.html" name="" title="System.Linq.Dynamic.Core.Parser">System.Linq.Dynamic.Core.Parser</a>
<ul class="nav level2">
<li>
<a href="System.Linq.Dynamic.Core.Parser.ExpressionParser.html" name="" title="ExpressionParser">ExpressionParser</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.Parser.ExpressionPromoter.html" name="" title="ExpressionPromoter">ExpressionPromoter</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.Parser.IExpressionPromoter.html" name="" title="IExpressionPromoter">IExpressionPromoter</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.Parser.NumberParser.html" name="" title="NumberParser">NumberParser</a>
</li>
</ul>
</li>
<li>
<span class="expand-stub"></span>
<a href="System.Linq.Dynamic.Core.Tokenizer.html" name="" title="System.Linq.Dynamic.Core.Tokenizer">System.Linq.Dynamic.Core.Tokenizer</a>
<ul class="nav level2">
<li>
<a href="System.Linq.Dynamic.Core.Tokenizer.TextParser.html" name="" title="TextParser">TextParser</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.Tokenizer.Token.html" name="" title="Token">Token</a>
</li>
<li>
<a href="System.Linq.Dynamic.Core.Tokenizer.TokenId.html" name="" title="TokenId">TokenId</a>
</li>
</ul>
</li>
<li>
<span class="expand-stub"></span>
<a href="System.Linq.Dynamic.Core.Util.Cache.html" name="" title="System.Linq.Dynamic.Core.Util.Cache">System.Linq.Dynamic.Core.Util.Cache</a>
<ul class="nav level2">
<li>
<a href="System.Linq.Dynamic.Core.Util.Cache.CacheConfig.html" name="" title="CacheConfig">CacheConfig</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
```
|
/content/code_sandbox/docs/api/toc.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,806
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Namespace System.Linq.Dynamic.Core
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Namespace System.Linq.Dynamic.Core
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core">
<h1 id="System_Linq_Dynamic_Core" data-uid="System.Linq.Dynamic.Core" class="text-break">Namespace System.Linq.Dynamic.Core
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="markdown level0 remarks"></div>
<h3 id="classes">Classes
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.html">DefaultQueryableAnalyzer</a></h4>
<section><p>Default implementation.</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.DynamicClass.html">DynamicClass</a></h4>
<section><p>Provides a base class for dynamic objects for Net 3.5</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.DynamicClassFactory.html">DynamicClassFactory</a></h4>
<section><p>A factory to create dynamic classes, based on <a href="path_to_url">path_to_url
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.DynamicEnumerableExtensions.html">DynamicEnumerableExtensions</a></h4>
<section><p>Define extensions on <span class="xref">System.Collections.IEnumerable</span>.</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.DynamicExpressionParser.html">DynamicExpressionParser</a></h4>
<section><p>Helper class to convert an expression into an LambdaExpression</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.DynamicProperty.html">DynamicProperty</a></h4>
<section><p>DynamicProperty</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.DynamicQueryableExtensions.html">DynamicQueryableExtensions</a></h4>
<section><p>Provides a set of static (Shared in Visual Basic) methods for querying data structures that implement <span class="xref">System.Linq.IQueryable</span>.
It allows dynamic string based querying. Very handy when, at compile time, you don't know the type of queries that will be generated,
or when downstream components only return column names to sort and filter by.</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.ExtensibilityPoint.html">ExtensibilityPoint</a></h4>
<section><p>Extensibility point: If you want to modify expanded queries before executing them
set your own functionality to override empty QueryOptimizer</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.GroupResult.html">GroupResult</a></h4>
<section><p>The result of a call to a <a class="xref" href="System.Linq.Dynamic.Core.DynamicQueryableExtensions.html">DynamicQueryableExtensions</a>.GroupByMany() overload.</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.PagedResult.html">PagedResult</a></h4>
<section><p>PagedResult</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.PagedResult-1.html">PagedResult<TSource></a></h4>
<section><p>PagedResult{TSource}</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.ParsingConfig.html">ParsingConfig</a></h4>
<section><p>Configuration class for System.Linq.Dynamic.Core.</p>
</section>
<h3 id="interfaces">Interfaces
</h3>
<h4><a class="xref" href="System.Linq.Dynamic.Core.IAssemblyHelper.html">IAssemblyHelper</a></h4>
<section><p>IAssemblyHelper interface which is used to retrieve assemblies that have been loaded into the execution context of this application domain.</p>
</section>
<h4><a class="xref" href="System.Linq.Dynamic.Core.IQueryableAnalyzer.html">IQueryableAnalyzer</a></h4>
<section><p>Interface for QueryableAnalyzer.</p>
</section>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,990
|
```smalltalk
using System;
using Android.App;
using Android.Content.PM;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
namespace TestSLDC.Droid
{
[Activity(Label = "TestSLDC", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize )]
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
protected override void OnCreate(Bundle savedInstanceState)
{
TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;
base.OnCreate(savedInstanceState);
Xamarin.Essentials.Platform.Init(this, savedInstanceState);
global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
LoadApplication(new App());
}
public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Android.Content.PM.Permission[] grantResults)
{
Xamarin.Essentials.Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults);
base.OnRequestPermissionsResult(requestCode, permissions, grantResults);
}
}
}
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/MainActivity.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 239
|
```html
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class DefaultQueryableAnalyzer
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class DefaultQueryableAnalyzer
">
<meta name="generator" content="docfx 2.59.4.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list">Search Results for <span></span></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="System.Linq.Dynamic.Core.DefaultQueryableAnalyzer">
<h1 id="System_Linq_Dynamic_Core_DefaultQueryableAnalyzer" data-uid="System.Linq.Dynamic.Core.DefaultQueryableAnalyzer" class="text-break">Class DefaultQueryableAnalyzer
</h1>
<div class="markdown level0 summary"><p>Default implementation.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">DefaultQueryableAnalyzer</span></div>
</div>
<div class="implements">
<h5>Implements</h5>
<div><a class="xref" href="System.Linq.Dynamic.Core.IQueryableAnalyzer.html">IQueryableAnalyzer</a></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="System.Linq.Dynamic.Core.html">System.Linq.Dynamic.Core</a></h6>
<h6><strong>Assembly</strong>: System.Linq.Dynamic.Core.dll</h6>
<h5 id="System_Linq_Dynamic_Core_DefaultQueryableAnalyzer_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class DefaultQueryableAnalyzer : IQueryableAnalyzer</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="path_to_url">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="path_to_url#L13">View Source</a>
</span>
<a id=your_sha256_hashObjects_" data-uid="System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.SupportsLinqToObjects*"></a>
<h4 id=your_sha256_hashObjects_System_Linq_IQueryable_System_Linq_IQueryProvider_" data-uid="System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.SupportsLinqToObjects(System.Linq.IQueryable,System.Linq.IQueryProvider)">SupportsLinqToObjects(IQueryable, IQueryProvider)</h4>
<div class="markdown level1 summary"><p>Determines whether the specified query (and provider) supports LinqToObjects.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public bool SupportsLinqToObjects(IQueryable query, IQueryProvider provider = null)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Linq.IQueryable</span></td>
<td><span class="parametername">query</span></td>
<td><p>The query to check.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.Linq.IQueryProvider</span></td>
<td><span class="parametername">provider</span></td>
<td><p>The provider to check (can be null).</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p>true/false</p>
</td>
</tr>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<a class="xref" href="System.Linq.Dynamic.Core.IQueryableAnalyzer.html">IQueryableAnalyzer</a>
</div>
<h3 id="seealso">See Also</h3>
<div class="seealso">
<div><a class="xref" href="System.Linq.Dynamic.Core.IQueryableAnalyzer.html">IQueryableAnalyzer</a></div>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="path_to_url" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="path_to_url#L10" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
```
|
/content/code_sandbox/docs/api/System.Linq.Dynamic.Core.DefaultQueryableAnalyzer.html
|
html
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,313
|
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="path_to_url">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{85D70423-5800-41E9-B7D5-244AAF051A85}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{c9e5eea5-ca05-42a1-839b-61506e0a37df}</TemplateGuid>
<OutputType>Library</OutputType>
<RootNamespace>TestSLDC.Droid</RootNamespace>
<AssemblyName>TestSLDC.Android</AssemblyName>
<Deterministic>True</Deterministic>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
<TargetFrameworkVersion>v9.0</TargetFrameworkVersion>
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>None</AndroidLinkMode>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Android" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml" />
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1451" />
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\AboutResources.txt" />
<None Include="Assets\AboutAssets.txt" />
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\layout\Tabbar.xml" />
<AndroidResource Include="Resources\layout\Toolbar.xml" />
<AndroidResource Include="Resources\values\styles.xml" />
<AndroidResource Include="Resources\values\colors.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon_round.xml" />
<AndroidResource Include="Resources\mipmap-hdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-hdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-mdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-mdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\launcher_foreground.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\drawable\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TestSLDC\TestSLDC.csproj">
<Project>{81021EA5-3A1D-4C59-82C2-0717A3A1D3AB}</Project>
<Name>TestSLDC</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<UserProperties TriggeredFromHotReload="False" />
</VisualStudio>
</ProjectExtensions>
</Project>
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/TestSLDC.Android.csproj
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,320
|
```xml
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="path_to_url">
<background android:drawable="@color/launcher_background" />
<foreground android:drawable="@mipmap/launcher_foreground" />
</adaptive-icon>
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/Resources/mipmap-anydpi-v26/icon.xml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 58
|
```xml
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="path_to_url">
<background android:drawable="@color/launcher_background" />
<foreground android:drawable="@mipmap/launcher_foreground" />
</adaptive-icon>
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/Resources/mipmap-anydpi-v26/icon_round.xml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 58
|
```xml
<android.support.v7.widget.Toolbar
xmlns:android="path_to_url"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/Resources/layout/Toolbar.xml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 83
|
```xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.TabLayout xmlns:android="path_to_url"
xmlns:app="path_to_url"
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:tabIndicatorColor="@android:color/white"
app:tabGravity="fill"
app:tabMode="fixed" />
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/Resources/layout/Tabbar.xml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 120
|
```xml
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="MainTheme" parent="MainTheme.Base">
<!-- As of Xamarin.Forms 4.6 the theme has moved into the Forms binary -->
<!-- If you want to override anything you can do that here. -->
<!-- Underneath are a couple of entries to get you started. -->
<!-- Set theme colors from path_to_url -->
<!-- colorPrimary is used for the default action bar background -->
<!--<item name="colorPrimary">#2196F3</item>-->
<!-- colorPrimaryDark is used for the status bar -->
<!--<item name="colorPrimaryDark">#1976D2</item>-->
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<!--<item name="colorAccent">#FF4081</item>-->
</style>
</resources>
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/Resources/values/styles.xml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 192
|
```xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="launcher_background">#FFFFFF</color>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
</resources>
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/Resources/values/colors.xml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 79
|
```smalltalk
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("TestSLDC.Android")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("TestSLDC.Android")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
// Add some common permissions, these can be removed if not needed
[assembly: UsesPermission(Android.Manifest.Permission.Internet)]
[assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/Properties/AssemblyInfo.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 188
|
```xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="path_to_url" android:versionCode="1" android:versionName="1.0" package="com.companyname.testsldc">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" />
<application android:label="TestSLDC.Android" android:theme="@style/MainTheme"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>
```
|
/content/code_sandbox/test-xamarin/TestSLDC.Android/Properties/AndroidManifest.xml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 110
|
```smalltalk
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace TestSLDC
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new MainPage();
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}
```
|
/content/code_sandbox/test-xamarin/TestSLDC/App.xaml.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 82
|
```xml
<?xml version="1.0" encoding="utf-8" ?>
<Application xmlns="path_to_url"
xmlns:x="path_to_url"
x:Class="TestSLDC.App">
<Application.Resources>
</Application.Resources>
</Application>
```
|
/content/code_sandbox/test-xamarin/TestSLDC/App.xaml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 54
|
```smalltalk
namespace ExpressionSample
{
public enum MyEnum
{
FirstValue = 0,
SecondValue = 1,
ThirdValue = 2
}
}
```
|
/content/code_sandbox/test-xamarin/TestSLDC/MyEnum.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 38
|
```xml
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<!--<PackageReference Include="System.Linq.Dynamic.Core" Version="1.2.6" />-->
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1451" />
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\System.Linq.Dynamic.Core\System.Linq.Dynamic.Core.csproj" />
</ItemGroup>
</Project>
```
|
/content/code_sandbox/test-xamarin/TestSLDC/TestSLDC.csproj
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 200
|
```smalltalk
using Xamarin.Forms.Xaml;
[assembly: XamlCompilation(XamlCompilationOptions.Compile)]
```
|
/content/code_sandbox/test-xamarin/TestSLDC/AssemblyInfo.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 17
|
```xml
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
x:Class="TestSLDC.MainPage"
xmlns="path_to_url"
xmlns:x="path_to_url">
<StackLayout>
<Button Clicked="Button_OnClicked" Text="Run test" />
<Label x:Name="MessageLbl" Text="" />
</StackLayout>
</ContentPage>
```
|
/content/code_sandbox/test-xamarin/TestSLDC/MainPage.xaml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 89
|
```smalltalk
namespace TestSLDC
{
public interface IColorComponent
{
/// <summary>
/// Alpha
/// </summary>
byte Alpha { get; }
/// <summary>
/// Red
/// </summary>
byte Red { get; }
/// <summary>
/// Blue
/// </summary>
byte Blue { get; }
/// <summary>
/// Green
/// </summary>
byte Green { get; }
/// <summary>
/// Hue
/// </summary>
float Hue { get; }
/// <summary>
/// Saturation
/// </summary>
float Saturation { get; }
/// <summary>
/// Brightness
/// </summary>
float Brightness { get; }
}
}
```
|
/content/code_sandbox/test-xamarin/TestSLDC/IColorComponent.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 170
|
```smalltalk
namespace ExpressionSample
{
public class MyEntity
{
public MyEnum MyEnum { get; set; }
}
}
```
|
/content/code_sandbox/test-xamarin/TestSLDC/MyEntity.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 29
|
```smalltalk
using System;
using System.Linq.Dynamic.Core;
using System.Linq.Expressions;
using ExpressionSample;
using Xamarin.Forms;
namespace TestSLDC
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
var lambdaParameter = new[] { Expression.Parameter(typeof(MyEntity), string.Empty) };
var workingExpression = DynamicExpressionParser.ParseLambda(lambdaParameter, typeof(bool), "MyEnum = MyEnum.SecondValue", null);
try
{
var problematicExpression = DynamicExpressionParser.ParseLambda(lambdaParameter, typeof(bool), "MyEnum = 1", null);
}
catch (Exception exception)
{
// This should not happen
int i = 42;
MessageLbl.Text = exception.ToString();
}
}
private void Button_OnClicked(object sender, EventArgs e)
{
try
{
const string filterStr = "Brightness < 0.5f";
var filter = filterStr.ParseLambda<IColorComponent, bool>();
MessageLbl.Text = "Success";
}
catch (Exception exception)
{
MessageLbl.Text = exception.ToString();
}
}
}
}
```
|
/content/code_sandbox/test-xamarin/TestSLDC/MainPage.xaml.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 241
|
```smalltalk
using System;
using System.Linq.Dynamic.Core;
namespace TestSLDC
{
internal static class LambdaExtensions
{
public static Func<T1, T2> ParseLambda<T1, T2>(this string expression)
{
return (Func<T1, T2>)DynamicExpressionParser.ParseLambda(false, typeof(T1), typeof(T2), expression).Compile();
}
}
}
```
|
/content/code_sandbox/test-xamarin/TestSLDC/LambdaExtensions.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 83
|
```unknown
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="path_to_url"
xmlns:mp="path_to_url"
xmlns:uap="path_to_url"
IgnorableNamespaces="uap mp">
<Identity
Name="5c97b0bd-91cd-4b05-b8a2-1b6783cc3f5d"
Publisher="CN=azureuser"
Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="5c97b0bd-91cd-4b05-b8a2-1b6783cc3f5d" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>WindowsUniversalTestApp16299</DisplayName>
<PublisherDisplayName>azureuser</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate"/>
</Resources>
<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="WindowsUniversalTestApp16299.App">
<uap:VisualElements
DisplayName="WindowsUniversalTestApp16299"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="WindowsUniversalTestApp16299"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
</Capabilities>
</Package>
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/Package.appxmanifest
|
unknown
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 447
|
```smalltalk
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
using System.Linq.Dynamic.Core;
namespace WindowsUniversalTestApp16299
{
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.
/// </summary>
sealed partial class App : Application
{
/// <summary>
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
/// </summary>
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
GlobalConfig.CustomTypeProvider = new WindowsAppCustomTypeProvider();
var containsList = new List<int> { 0, 1, 2, 3 };
var q = containsList.AsQueryable().Where("it > 1");
var a = q.ToDynamicArray<int>();
var lst = new List<TestEnum> { TestEnum.Var1, TestEnum.Var2, TestEnum.Var3, TestEnum.Var4, TestEnum.Var5, TestEnum.Var6 };
var qry = lst.AsQueryable();
//Act
var result1 = qry.Where("it < TestEnum.Var4").ToDynamicList();
var result2 = qry.Where("TestEnum.Var4 > it").ToDynamicList();
var result3 = qry.Where("it = Var5").ToDynamicList();
var result4 = qry.Where("it = @0", TestEnum.Var5).ToDynamicList();
var result5 = qry.Where("it = @0", 8).ToDynamicList();
var resultNewList1 = containsList.AsQueryable().Select("new (it as i)").ToDynamicList();
var resultNew1 = resultNewList1[0];
int i1 = resultNew1.i;
var resultNew4List = containsList.AsQueryable().Select("new (it as a, it as b, \"c\" as c, 200 as d)").ToDynamicList();
var resultNew4 = resultNew4List[0];
int a4 = resultNew4.a;
int b4 = resultNew4.b;
string c4 = resultNew4.c;
int d4 = resultNew4.d;
var resultNewList5TestClass = containsList.AsQueryable().Select<TestClass>("new (it as a, it as b, \"c\" as c, 200 as d)").ToList();
var firstTestClass = resultNewList5TestClass.First();
var resultNewList4WithMyClass = containsList.AsQueryable().Select<TestClassWithConstructor>("new (it as a, it as b, \"c\" as c, 200 as d)").ToList();
var firstTestClassWithConstructor = resultNewList4WithMyClass.First();
var resultNewList5 = containsList.AsQueryable().Select("new (it as a, it as b, \"c\" as c, 200 as d, 300 as e)").ToDynamicList();
int y = 0;
}
/// <summary>
/// Invoked when the application is launched normally by the end user. Other entry points
/// will be used such as when the application is launched to open a specific file.
/// </summary>
/// <param name="e">Details about the launch request and process.</param>
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
rootFrame.NavigationFailed += OnNavigationFailed;
if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
//TODO: Load state from previously suspended application
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (e.PrelaunchActivated == false)
{
if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
rootFrame.Navigate(typeof(MainPage), e.Arguments);
}
// Ensure the current window is active
Window.Current.Activate();
}
}
/// <summary>
/// Invoked when Navigation to a certain page fails
/// </summary>
/// <param name="sender">The Frame which failed navigation</param>
/// <param name="e">Details about the navigation failure</param>
void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
{
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
}
/// <summary>
/// Invoked when application execution is being suspended. Application state is saved
/// without knowing whether the application will be terminated or resumed with the contents
/// of memory still intact.
/// </summary>
/// <param name="sender">The source of the suspend request.</param>
/// <param name="e">Details about the suspend request.</param>
private void OnSuspending(object sender, SuspendingEventArgs e)
{
var deferral = e.SuspendingOperation.GetDeferral();
//TODO: Save application state and stop any background activity
deferral.Complete();
}
}
}
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/App.xaml.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 1,244
|
```xml
<Application
x:Class="WindowsUniversalTestApp16299.App"
xmlns="path_to_url"
xmlns:x="path_to_url"
xmlns:local="using:WindowsUniversalTestApp16299"
RequestedTheme="Light">
</Application>
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/App.xaml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 55
|
```smalltalk
namespace WindowsUniversalTestApp16299
{
public class TestClass
{
public int a { get; set; }
public int b { get; set; }
public string c { get; set; }
public int d { get; set; }
}
}
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/TestClass.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 62
|
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="path_to_url">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{7AD84091-A582-47B9-9165-9B8E53C32F22}</ProjectGuid>
<OutputType>AppContainerExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>WindowsUniversalTestApp16299</RootNamespace>
<AssemblyName>WindowsUniversalTestApp16299</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.16299.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
<PackageCertificateKeyFile>WindowsUniversalTestApp16299_TemporaryKey.pfx</PackageCertificateKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<NoWarn>;2008</NoWarn>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<NoWarn>;2008</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\ARM\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<NoWarn>;2008</NoWarn>
<DebugType>full</DebugType>
<PlatformTarget>ARM</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
<OutputPath>bin\ARM\Release\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<NoWarn>;2008</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>ARM</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<NoWarn>;2008</NoWarn>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<NoWarn>;2008</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
</PropertyGroup>
<ItemGroup>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
</Compile>
<Compile Include="MainPage.xaml.cs">
<DependentUpon>MainPage.xaml</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TestClass.cs" />
<Compile Include="TestClassWithConstructor.cs" />
<Compile Include="TestEnum.cs" />
<Compile Include="WindowsAppCustomTypeProvider.cs" />
</ItemGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<None Include="WindowsUniversalTestApp16299_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
<Content Include="Properties\Default.rd.xml" />
<Content Include="Assets\LockScreenLogo.scale-200.png" />
<Content Include="Assets\SplashScreen.scale-200.png" />
<Content Include="Assets\Square150x150Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
<Content Include="Assets\StoreLogo.png" />
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="MainPage.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.0.6</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="System.Linq.Dynamic.Core">
<HintPath>..\..\src\System.Linq.Dynamic.Core\bin\Debug\net35\System.Linq.Dynamic.Core.dll</HintPath>
</Reference>
</ItemGroup>
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
<VisualStudioVersion>14.0</VisualStudioVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<NoWarn>;2008</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>full</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<Optimize>true</Optimize>
<NoWarn>;2008</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/WindowsUniversalTestApp16299.csproj
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 2,287
|
```xml
<Page
x:Class="WindowsUniversalTestApp16299.MainPage"
xmlns="path_to_url"
xmlns:x="path_to_url"
xmlns:local="using:WindowsUniversalTestApp16299"
xmlns:d="path_to_url"
xmlns:mc="path_to_url"
mc:Ignorable="d">
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
</Grid>
</Page>
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/MainPage.xaml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 93
|
```smalltalk
namespace WindowsUniversalTestApp16299
{
public class TestClassWithConstructor
{
public int a { get; set; }
public int b { get; set; }
public string c { get; set; }
public int d { get; set; }
public TestClassWithConstructor(int a, int b, string c, int d)
{
this.a = a;
this.b = b;
this.c = c;
this.d = d;
}
}
}
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/TestClassWithConstructor.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 110
|
```smalltalk
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// The Blank Page item template is documented at path_to_url
namespace WindowsUniversalTestApp16299
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
}
}
}
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/MainPage.xaml.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 155
|
```smalltalk
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Linq.Dynamic.Core.CustomTypeProviders;
using System.Reflection;
using System.Threading.Tasks;
namespace WindowsUniversalTestApp16299
{
class WindowsAppCustomTypeProvider : AbstractDynamicLinqCustomTypeProvider, IDynamicLinkCustomTypeProvider
{
public HashSet<Type> GetCustomTypes()
{
var assemblies = GetAssemblyListAsync().Result.Where(x => !x.IsDynamic).ToArray();
return new HashSet<Type>(FindTypesMarkedWithDynamicLinqTypeAttribute(assemblies));
}
private static async Task<List<Assembly>> GetAssemblyListAsync()
{
List<Assembly> assemblies = new List<Assembly>();
var files = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFilesAsync();
if (files == null)
return assemblies;
foreach (var file in files.Where(file => file.FileType == ".dll" || file.FileType == ".exe"))
{
try
{
var assembly = Assembly.Load(new AssemblyName(file.DisplayName));
// just load all types and skip this assembly of one or more types cannot be resolved
var dummy = assembly.DefinedTypes.ToArray();
assemblies.Add(assembly);
}
catch (Exception ex)
{
Debug.Write(ex.Message);
}
}
return assemblies;
}
}
}
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/WindowsAppCustomTypeProvider.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 284
|
```smalltalk
using System.Linq.Dynamic.Core.CustomTypeProviders;
namespace WindowsUniversalTestApp16299
{
[DynamicLinqType]
public enum TestEnum
{
Var1 = 0,
Var2 = 1,
Var3 = 2,
Var4 = 4,
Var5 = 8,
Var6 = 16,
}
}
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/TestEnum.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 79
|
```smalltalk
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("WindowsUniversalTestApp16299")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("WindowsUniversalTestApp16299")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: ComVisible(false)]
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/Properties/AssemblyInfo.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 192
|
```xml
<!--
This file contains Runtime Directives used by .NET Native. The defaults here are suitable for most
developers. However, you can modify these parameters to modify the behavior of the .NET Native
optimizer.
Runtime Directives are documented at path_to_url
To fully enable reflection for App1.MyClass and all of its public/private members
<Type Name="App1.MyClass" Dynamic="Required All"/>
To enable dynamic creation of the specific instantiation of AppClass<T> over System.Int32
<TypeInstantiation Name="App1.AppClass" Arguments="System.Int32" Activate="Required Public" />
Using the Namespace directive to apply reflection policy to all the types in a particular namespace
<Namespace Name="DataClasses.ViewModels" Serialize="All" />
-->
<Directives xmlns="path_to_url">
<Application>
<!--
An Assembly element with Name="*Application*" applies to all assemblies in
the application package. The asterisks are not wildcards.
-->
<Assembly Name="*Application*" Dynamic="Required All" />
<!-- Add your application specific runtime directives here. -->
</Application>
</Directives>
```
|
/content/code_sandbox/test-xamarin/WindowsUniversalTestApp16299/Properties/Default.rd.xml
|
xml
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 247
|
```unknown
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="path_to_url"
xmlns:mp="path_to_url"
xmlns:uap="path_to_url"
IgnorableNamespaces="uap mp">
<Identity
Name="97d206b2-38d0-44c9-8ec4-6c8198dbe1c4"
Publisher="CN=a8155a52-88d7-4117-a5d4-94bd3aed151b"
Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="ec0cc741-fd3e-485c-81be-68815c480690" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>ExpressionSample.UWP</DisplayName>
<PublisherDisplayName>a8155a52-88d7-4117-a5d4-94bd3aed151b</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate"/>
</Resources>
<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="ExpressionSample.UWP.App">
<uap:VisualElements
DisplayName="ExpressionSample.UWP"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png"
Description="ExpressionSample.UWP"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png">
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square150x150Logo" />
<uap:ShowOn Tile="wide310x150Logo" />
<uap:ShowOn Tile="square310x310Logo" />
</uap:ShowNameOnTiles>
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
</Capabilities>
</Package>
```
|
/content/code_sandbox/test-xamarin/ExpressionSample/ExpressionSample.UWP/Package.appxmanifest
|
unknown
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 571
|
```smalltalk
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
namespace ExpressionSample.UWP
{
/// <summary>
/// Provides application-specific behavior to supplement the default Application class.
/// </summary>
sealed partial class App : Application
{
/// <summary>
/// Initializes the singleton application object. This is the first line of authored code
/// executed, and as such is the logical equivalent of main() or WinMain().
/// </summary>
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
}
/// <summary>
/// Invoked when the application is launched normally by the end user. Other entry points
/// will be used such as when the application is launched to open a specific file.
/// </summary>
/// <param name="e">Details about the launch request and process.</param>
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
#if DEBUG
if (System.Diagnostics.Debugger.IsAttached)
{
this.DebugSettings.EnableFrameRateCounter = true;
}
#endif
Frame rootFrame = Window.Current.Content as Frame;
// Do not repeat app initialization when the Window already has content,
// just ensure that the window is active
if (rootFrame == null)
{
// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
rootFrame.NavigationFailed += OnNavigationFailed;
Xamarin.Forms.Forms.Init(e);
if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
//TODO: Load state from previously suspended application
}
// Place the frame in the current Window
Window.Current.Content = rootFrame;
}
if (rootFrame.Content == null)
{
// When the navigation stack isn't restored navigate to the first page,
// configuring the new page by passing required information as a navigation
// parameter
rootFrame.Navigate(typeof(MainPage), e.Arguments);
}
// Ensure the current window is active
Window.Current.Activate();
}
/// <summary>
/// Invoked when Navigation to a certain page fails
/// </summary>
/// <param name="sender">The Frame which failed navigation</param>
/// <param name="e">Details about the navigation failure</param>
void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
{
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
}
/// <summary>
/// Invoked when application execution is being suspended. Application state is saved
/// without knowing whether the application will be terminated or resumed with the contents
/// of memory still intact.
/// </summary>
/// <param name="sender">The source of the suspend request.</param>
/// <param name="e">Details about the suspend request.</param>
private void OnSuspending(object sender, SuspendingEventArgs e)
{
var deferral = e.SuspendingOperation.GetDeferral();
//TODO: Save application state and stop any background activity
deferral.Complete();
}
}
}
```
|
/content/code_sandbox/test-xamarin/ExpressionSample/ExpressionSample.UWP/App.xaml.cs
|
smalltalk
| 2016-04-08T16:41:51
| 2024-08-16T05:55:59
|
System.Linq.Dynamic.Core
|
zzzprojects/System.Linq.Dynamic.Core
| 1,537
| 743
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.