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; ...
/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; ...
/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 tel...
/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> </...
/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/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;--inf...
/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#icon...
/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) ...
/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 Cont...
/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...
/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-...
/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=...
/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 ...
/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:n...
/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 ...
/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 fu...
/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(); re...
/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 (...
/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:...
/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 "> <me...
/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 filte...
/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 DynamicClassFac...
/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 "> ...
/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 "> ...
/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" c...
/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 ExpressionPromot...
/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 "> <...
/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 DynamicExpr...
/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="Interf...
/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="Na...
/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="Clas...
/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 IQueryab...
/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 "> <...
/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 "> <me...
/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=...
/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=...
/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 StringLitera...
/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="Interf...
/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 Dynamic...
/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="N...
/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 IExpres...
/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="Names...
/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 ExtensibilityPoi...
/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 ...
/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="Names...
/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 ">...
/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="N...
/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 IAssemblyHe...
/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 "> <...
/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&lt;T1, T2&gt; </title> <meta name="viewport" content="width=device-width"> <meta name="title" content="Class Tuple&lt;T1, T2...
/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&lt;TSource&gt; </title> <meta name="viewport" content="width=device-width"> <meta name="title" content="Class PagedRes...
/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 DynamicLin...
/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="Cla...
/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 ...
/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 DynamicQ...
/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 "> ...
/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=...
/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 Sy...
/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 = Config...
/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 DefaultQue...
/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-B...
/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="@s...
/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...
/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...
/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 assembl...
/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/Main...
/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() { ...
/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> <DebugS...
/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> ...
/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...
/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), e...
/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="5c9...
/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 Wi...
/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')" /> <PropertyGro...
/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}"> ...
/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) ...
/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 Wi...
/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 : AbstractDynamicLinqCusto...
/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: Assem...
/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 A...
/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:PhoneI...
/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 Wi...
/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