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 |
|---|---|---|---|---|---|---|---|---|
```smalltalk
namespace System.Linq.Dynamic.Core.Parser.SupportedOperands;
internal interface IEqualitySignatures : IRelationalSignatures
{
void F(bool x, bool y);
void F(bool? x, bool? y);
// Disabled 4 lines below because of : path_to_url
//void F(DateTime x, string y);
//void F(DateTime? x, stri... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Parser/SupportedOperands/IEqualitySignatures.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 179 |
```smalltalk
namespace System.Linq.Dynamic.Core.Parser.SupportedOperands
{
internal interface INotSignatures
{
void F(bool x);
void F(bool? x);
}
}
``` | /content/code_sandbox/src/System.Linq.Dynamic.Core/Parser/SupportedOperands/INotSignatures.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 39 |
```smalltalk
namespace System.Linq.Dynamic.Core.Parser.SupportedMethods;
internal enum CompareConversionType
{
Both = 0,
First = 1,
Second = -1
}
``` | /content/code_sandbox/src/System.Linq.Dynamic.Core/Parser/SupportedMethods/CompareConversionType.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 37 |
```smalltalk
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq.Dynamic.Core.Validation;
using System.Linq.Expressions;
using System.Reflection;
namespace System.Linq.Dynamic.Core.Parser.SupportedMethods;
internal class MethodFinder
{
private readonly ParsingConfig _parsing... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Parser/SupportedMethods/MethodFinder.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 2,965 |
```smalltalk
using System.Linq.Expressions;
using System.Reflection;
namespace System.Linq.Dynamic.Core.Parser.SupportedMethods
{
internal class MethodData
{
public MethodBase MethodBase { get; set; }
public ParameterInfo[] Parameters { get; set; }
public Expression[] Args { get; set; }... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Parser/SupportedMethods/MethodData.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 67 |
```smalltalk
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Linq.Dynamic.Core.Config;
using System.Linq.Dynamic.Core.Exceptions;
using System.Linq.Dynamic.Core.Extensions;
using System.Linq.Dynamic.... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Parser/ExpressionParser.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 18,730 |
```smalltalk
// ReSharper disable once CheckNamespace
namespace System.Linq.Expressions
{
internal static class LambdaExpressionExtensions
{
public static Type GetReturnType(this LambdaExpression lambdaExpression)
{
#if !NET35
return lambdaExpression.ReturnType;
#else
ret... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/LambdaExpressionExtensions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 66 |
```smalltalk
#if NET35
namespace System
{
/// <summary>
/// Represents a 2-tuple, or pair.
/// </summary>
/// <typeparam name="T1">The type of the tuple's first component.</typeparam>
/// <typeparam name="T2">The type of the tuple's second component.</typeparam>
public class Tuple<T1, T2>
{
... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/Tuple.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 198 |
```smalltalk
using System.Reflection.Emit;
// ReSharper disable once CheckNamespace
namespace System.Reflection
{
internal static class CustomTypeBuilderExtensions
{
#if !(NET35 || NET40 || SILVERLIGHT || WPSL || UAP10_0)
public static Type CreateType(this TypeBuilder tb)
{
return t... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/CustomTypeBuilderExtensions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 247 |
```smalltalk
#if NETSTANDARD1_3
using System.Linq;
namespace System.Reflection;
internal static class TypeExtensions
{
public static MethodInfo? GetMethod(this Type type, string name, BindingFlags bindingAttr, object? binder, Type[] types, object[]? modifiers)
{
return type
.GetMethods(bin... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/TypeExtensions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 91 |
```smalltalk
#if SILVERLIGHT
namespace System.ComponentModel
{
internal static class CustomTypeConverterExtensions
{
/// <summary>
/// Converts the given string to the type of this converter.
/// </summary>
/// <param name="typeConverter">The System.ComponentModel.TypeConverter</... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/CustomTypeConverterExtensions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 127 |
```smalltalk
#if NET35
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace System.Linq.Expressions
{
/// <summary>
/// Code copied from path_to_url
/// </summary>
internal abstract class ExpressionVisitor
{
/// <summary>
/// Initializes a new instance o... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/ExpressionVisitor.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 2,320 |
```smalltalk
// ReSharper disable once CheckNamespace
namespace System;
internal static class StringExtensions
{
/// <summary>
/// Indicates whether a specified string is null, empty, or consists only of white-space
/// characters.
///
/// Recreates the same functionality as System.String.IsNullOr... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/StringExtensions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 218 |
```smalltalk
#if NET35 || NET40
using System.Linq;
// ReSharper disable once CheckNamespace
namespace System.Reflection
{
internal static class MemberInfoExtensions
{
public static T GetCustomAttribute<T>(this MemberInfo memberInfo) where T : Attribute
{
return memberInfo.GetCustomA... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/MemberInfoExtensions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 76 |
```smalltalk
using System.Linq;
// ReSharper disable once CheckNamespace
namespace System.Reflection
{
/// <summary>
/// path_to_url
/// </summary>
internal static class CustomIntrospectionExtensions
{
#if NET35 || NET40 || PORTABLE || SILVERLIGHT || WPSL
// This allows us to use the new refle... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/CustomIntrospectionExtensions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 283 |
```smalltalk
//
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, subli... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Compatibility/Nullable/NotNullWhenAttribute.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 477 |
```smalltalk
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("EntityFramework.DynamicLinq.Tests, PublicKey=your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hash)]
[assembly: InternalsVisibleTo("EntityFramework.DynamicLinq.Tests.net452, PublicKey=your_sha256_hashyour_sha2... | /content/code_sandbox/src/System.Linq.Dynamic.Core/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 | 230 |
```smalltalk
// Copied from path_to_url
namespace System.Linq.Dynamic.Core.Validation;
internal static class CoreStrings
{
public static string ArgumentPropertyNull(string property, string argument)
{
return $"The property '{property}' of the argument '{argument}' cannot be null.";
}
public st... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Validation/CoreStrings.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 122 |
```smalltalk
#if !NETCOREAPP3_0_OR_GREATER
namespace System.Runtime.CompilerServices
{
[AttributeUsage(AttributeTargets.Parameter, Inherited = false)]
internal sealed class CallerArgumentExpressionAttribute : Attribute
{
public CallerArgumentExpressionAttribute(string parameterName)
{
ParameterName = paramete... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Validation/CallerArgumentExpressionAttribute.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 81 |
```smalltalk
namespace System.Linq.Dynamic.Core.Validation
{
/// <summary>
/// To fix 'xxx' is null on at least one execution path. See also path_to_url
/// </summary>
internal class ValidatedNotNullAttribute : Attribute
{
}
}
``` | /content/code_sandbox/src/System.Linq.Dynamic.Core/Validation/ValidatedNotNullAttribute.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 56 |
```smalltalk
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.CompilerServices;
// Copied from path_to_url
namespace System.Linq.Dynamic.Core.Validation;
[DebuggerStepThrough]
internal static class Check
{
public static T Condition<T>(T value, Predicate<T> predicate, [CallerArgumen... | /content/code_sandbox/src/System.Linq.Dynamic.Core/Validation/Check.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 658 |
```smalltalk
namespace Microsoft.EntityFrameworkCore.DynamicLinq;
/// <summary>
/// A dummy class to determine if the assembly is using EF Core.
/// </summary>
public struct EFCoreType
{
}
``` | /content/code_sandbox/src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3/EFCoreType.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 38 |
```smalltalk
using System.Linq.Dynamic.Core.CustomTypeProviders;
namespace Microsoft.EntityFrameworkCore.DynamicLinq
{
/// <summary>
/// DynamicFunctions (EF.Functions)
/// </summary>
[DynamicLinqType]
public static class DynamicFunctions
{
#if (NETSTANDARD2_0 || NETCOREAPP2_1) && EFDYNAMICFUNC... | /content/code_sandbox/src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3/DynamicFunctions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 558 |
```xml
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<Import Project="../../version.xml" />
<PropertyGroup>
<AssemblyName>Microsoft.EntityFrameworkCore.DynamicLinq</AssemblyName>
<AssemblyOriginatorKeyFile>../Microsoft.EntityFrameworkCore.DynamicLinq.EFCore2/Microsoft.EntityFrameworkCor... | /content/code_sandbox/src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3.csproj | xml | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 542 |
```smalltalk
#if EFCORE
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.EntityFrameworkCore.Query.Internal;
#else
using System.Data.Entity.Infrastructure;
#endif
using System;
using System.Diagnostics;
using System.Linq;
using System.Linq.Dynamic.Core;
using System.Linq.Dynamic.Core.Validation;
using System.... | /content/code_sandbox/src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3/EFDynamicQueryableWithFormattableStringExtensions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 1,845 |
```xml
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<Description>Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support</Description>
<AssemblyTitle>Microsoft.EntityFrameworkCore.DynamicLinq</AssemblyTitle>
<VersionPrefix>1.0.8.12</Version... | /content/code_sandbox/src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3/Microsoft.EntityFrameworkCore.DynamicLinq.AppVeyor.csproj | xml | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 1,448 |
```smalltalk
using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
#if !(NETSTANDARD2_0)
[assembly: Guid("b467c675-c014-4be3-85b9-9578941d28c8")]
#endif
``` | /content/code_sandbox/src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3/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 | 49 |
```xml
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<Import Project="../../version.xml" />
<PropertyGroup>
<AssemblyName>Microsoft.EntityFrameworkCore.DynamicLinq</AssemblyName>
<AssemblyOriginatorKeyFile>../Microsoft.EntityFrameworkCore.DynamicLinq.EFCore2/Microsoft.EntityFrameworkCor... | /content/code_sandbox/src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore5/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore5.csproj | xml | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 566 |
```smalltalk
using System.Runtime.InteropServices;
[assembly: ComVisible(false)]
#if !(NETSTANDARD2_1)
[assembly: Guid("b467c675-c014-4b55-85b9-9578941d28c8")]
#endif
``` | /content/code_sandbox/src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore5/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 | 49 |
```xml
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>BlazorApp1</AssemblyName>
<RootNamespace>BlazorApp1</RootNamespace>
</PropertyGroup>
... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/RadzenDataGrid.BlazorApp.csproj | xml | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 217 |
```smalltalk
using BlazorApp1.Components;
using Microsoft.EntityFrameworkCore;
using Radzen;
using static Microsoft.EntityFrameworkCore.DbLoggerCategory.Database;
namespace BlazorApp1;
public class Program
{
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Program.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 227 |
```smalltalk
using BlazorApp1.Entities;
using Microsoft.EntityFrameworkCore;
namespace BlazorApp1;
public class MyDbContext : DbContext
{
public MyDbContext(DbContextOptions<MyDbContext> options) : base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/MyDbContext.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 144 |
```smalltalk
namespace BlazorApp1.Entities;
public class PriceListServiceBase
{
public int Index { get; set; }
public string? Code { get; set; }
public string? ServiceName { get; set; }
}
``` | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Entities/PriceListServiceBase.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 47 |
```smalltalk
using System.ComponentModel.DataAnnotations;
namespace BlazorApp1.Entities;
public class PriceListService
{
[Key]
public int Id { get; set; }
// [Required]
public PriceListServiceBase ServiceBase { get; set; } = new();
}
``` | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Entities/PriceListService.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 55 |
```unknown
<Router AppAssembly="typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)" />
<FocusOnNavigate RouteData="routeData" Selector="h1" />
</Found>
</Router>
``` | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/Routes.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 62 |
```unknown
<!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="bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="app.css" />
<link rel="stylesheet" hre... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/App.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 199 |
```unknown
@using System.Net.Http
@using System.Net.Http.Json
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@using Microsoft.AspNetCore.Components.Web.Virtualization
@usi... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/_Imports.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 83 |
```unknown
@inherits LayoutComponentBase
<RadzenComponents />
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<main>
<div class="top-row px-4">
<a href="path_to_url" target="_blank">About</a>
</div>
<article class="content px-4">
@Body
... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/Layout/MainLayout.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 135 |
```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/RadzenDataGrid.BlazorApp/Components/Layout/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 | 548 |
```css
.navbar-toggler {
appearance: none;
cursor: pointer;
width: 3.5rem;
height: 2.5rem;
color: white;
position: absolute;
top: 0.5rem;
right: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
background: url("data:image/svg+xml,%3csvg xmlns='path_to_url viewBox='0 0 30 30'%3e%... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/Layout/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 | 1,410 |
```unknown
<div class="top-row ps-3 navbar navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="">BlazorApp1</a>
</div>
</div>
<input type="checkbox" title="Navigation menu" class="navbar-toggler" />
<div class="nav-scrollable" onclick="document.querySelector('.navbar-toggler').cl... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/Layout/NavMenu.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 256 |
```unknown
@page "/Error"
@using System.Diagnostics
<PageTitle>Error</PageTitle>
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
@if (ShowRequestId)
{
<p>
<strong>Request ID:</strong> <code>@RequestId</code>
</p>
}
<h3>Development Mod... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/Pages/Error.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 265 |
```unknown
@page "/counter"
<PageTitle>Counter</PageTitle>
<h1>Counter</h1>
<p role="status">Current count: @currentCount</p>
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
@code {
private int currentCount = 0;
private void IncrementCount()
{
currentCount++;
}
... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/Pages/Counter.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 82 |
```unknown
@page "/weather"
<PageTitle>Weather</PageTitle>
<h1>Weather</h1>
<p>This component demonstrates showing data.</p>
@if (forecasts == null)
{
<p><em>Loading...</em></p>
}
else
{
<table class="table">
<thead>
<tr>
<th>Date</th>
<th>Temp. (C)</th>
... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/Pages/Weather.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 413 |
```css
table {
border: 1px solid grey;
width: 40%;
}
th {
border: 1px solid grey;
}
td {
border: 1px solid grey;
}
thead {
background-color: lightskyblue;
}
tfoot {
background-color: lightskyblue;
}
``` | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/Pages/Home.razor.css | css | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 67 |
```unknown
@page "/"
@using Microsoft.EntityFrameworkCore
@using Radzen
@using System.Linq.Dynamic.Core;
@using BlazorApp1.Entities
<PageTitle>Home</PageTitle>
<div style="margin:5px;">
<RadzenButton Click="OnLoadAllDataFromDb">Second step -> Load data from Db with OrderBy(x=>x.ServiceBase.Code)</RadzenButton>
</d... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/Components/Pages/Home.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 1,143 |
```css
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
a, .btn-link {
color: #006bb7;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus... | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/wwwroot/app.css | css | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 449 |
```smalltalk
#if EFCORE
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.EntityFrameworkCore.Query.Internal;
#else
using System.Data.Entity.Infrastructure;
#endif
using System;
using System.Diagnostics;
using System.Linq;
using System.Linq.Dynamic.Core;
using System.Linq.Dynamic.Core.Validation;
using System.... | /content/code_sandbox/src/Microsoft.EntityFrameworkCore.DynamicLinq.EFCore3/EFDynamicQueryableExtensions.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 12,009 |
```unknown
``` | /content/code_sandbox/src-blazor/RadzenDataGrid.BlazorApp/wwwroot/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 |
```xml
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<!--<BlazorWebAssemblyEnableLinking>false</BlazorWebAssemblyEnableLinking>-->
</PropertyGroup>
<ItemGroup>
<PackageRe... | /content/code_sandbox/src-blazor/WasmDynamicLinq/WasmDynamicLinq.csproj | xml | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 181 |
```unknown
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutVi... | /content/code_sandbox/src-blazor/WasmDynamicLinq/App.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 113 |
```unknown
@using System.Net.Http
@using System.Net.Http.Json
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.AspNetCore.Components.WebAssembly.Http
@using Mi... | /content/code_sandbox/src-blazor/WasmDynamicLinq/_Imports.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 78 |
```smalltalk
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using WasmDynamicLinq;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("#app");
builder.RootComponents.Add<HeadOutlet>("head::after");
builder.Services.AddScoped... | /content/code_sandbox/src-blazor/WasmDynamicLinq/Program.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 81 |
```smalltalk
namespace WasmDynamicLinq
{
public class MyClass
{
public int Id { get; set; }
}
}
``` | /content/code_sandbox/src-blazor/WasmDynamicLinq/MyClass.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 29 |
```unknown
@inherits LayoutComponentBase
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<main>
<div class="top-row px-4">
<a href="path_to_url" target="_blank">About</a>
</div>
<article class="content px-4">
@Body
</article>
... | /content/code_sandbox/src-blazor/WasmDynamicLinq/Layout/MainLayout.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 89 |
```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/WasmDynamicLinq/Layout/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 | 409 |
```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;
}
.bi {
display: inline-block;
position: relative;
width: 1.25rem;
height: 1.25rem;
margin-right: 0.75rem;
... | /content/code_sandbox/src-blazor/WasmDynamicLinq/Layout/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 | 1,162 |
```unknown
<div class="top-row ps-3 navbar navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="">WasmDynamicLinq</a>
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
<span class="navbar-toggler-icon"></span>
</button>
</di... | /content/code_sandbox/src-blazor/WasmDynamicLinq/Layout/NavMenu.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 329 |
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WasmDynamicLinq</title>
<base href="/" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="css/ap... | /content/code_sandbox/src-blazor/WasmDynamicLinq/wwwroot/index.html | html | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 262 |
```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;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-contr... | /content/code_sandbox/src-blazor/WasmDynamicLinq/wwwroot/css/app.css | css | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 808 |
```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/RadzenDataGrid.BlazorApp/wwwroot/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 |
```unknown
``` | /content/code_sandbox/src-blazor/WasmDynamicLinq/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 |
```unknown
@page "/counter"
<PageTitle>Counter</PageTitle>
<h1>Counter</h1>
<p role="status">Current count: @currentCount</p>
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
@code {
private int currentCount = 0;
private void IncrementCount()
{
currentCount++;
}
... | /content/code_sandbox/src-blazor/WasmDynamicLinq/Pages/Counter.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 82 |
```smalltalk
using System.Linq.Dynamic.Core;
namespace WasmDynamicLinq.Pages;
public partial class Home
{
protected override void OnInitialized()
{
base.OnInitialized();
var o = new Order();
dynamic od = o;
Console.WriteLine(od.OrderId);
var props = new DynamicPropert... | /content/code_sandbox/src-blazor/WasmDynamicLinq/Pages/Home.razor.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 689 |
```unknown
@page "/weather"
@inject HttpClient Http
<PageTitle>Weather</PageTitle>
<h1>Weather</h1>
<p>This component demonstrates fetching data from the server.</p>
@if (forecasts == null)
{
<p><em>Loading...</em></p>
}
else
{
<table class="table">
<thead>
<tr>
<th>Date<... | /content/code_sandbox/src-blazor/WasmDynamicLinq/Pages/Weather.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 305 |
```unknown
@page "/"
<PageTitle>Home</PageTitle>
<h1>Hello, world!</h1>
Welcome to your new app.
``` | /content/code_sandbox/src-blazor/WasmDynamicLinq/Pages/Home.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 29 |
```unknown
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at t... | /content/code_sandbox/src-blazor/BlazorWASMExample/App.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 88 |
```unknown
@using System.Net.Http
@using System.Net.Http.Json
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.AspNetCore.Components.WebAssembly.Http
@using Mi... | /content/code_sandbox/src-blazor/BlazorWASMExample/_Imports.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 78 |
```smalltalk
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
n... | /content/code_sandbox/src-blazor/BlazorWASMExample/Program.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 129 |
```xml
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<!--<BlazorWebAssemblyEnableLinking>false</BlazorWebAssemblyEnableLinking>-->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Component... | /content/code_sandbox/src-blazor/BlazorWASMExample/BlazorWASMExample.csproj | xml | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 224 |
```unknown
@inherits LayoutComponentBase
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<div class="main">
<div class="top-row px-4">
<a href="path_to_url" target="_blank" class="ml-md-auto">About</a>
</div>
<div class="content px-4">
@... | /content/code_sandbox/src-blazor/BlazorWASMExample/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 | 98 |
```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/BlazorWASMExample/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 | 353 |
```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/BlazorWASMExample/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" role="alert">
<span class="oi oi-pencil mr-2" aria-hidden="true"></span>
<strong>@Title</strong>
<span class="text-nowrap">
Please take our
<a target="_blank" class="font-weight-bold" href="path_to_url">brief survey</a>
</span>
and ... | /content/code_sandbox/src-blazor/BlazorWASMExample/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 | 125 |
```unknown
<div class="top-row pl-4 navbar navbar-dark">
<a class="navbar-brand" href="">BlazorWASMExample</a>
<button class="navbar-toggler" @onclick="ToggleNavMenu">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="@NavMenuCssClass" @onclick="ToggleNavMenu">
<ul class="n... | /content/code_sandbox/src-blazor/BlazorWASMExample/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 | 355 |
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>BlazorWASMExample</title>
<base href="/" />
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link ... | /content/code_sandbox/src-blazor/BlazorWASMExample/wwwroot/index.html | html | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 197 |
```css
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
a, .btn-link {
color: #0366d6;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
.content {
padding-top: 1.1re... | /content/code_sandbox/src-blazor/BlazorWASMExample/wwwroot/css/app.css | css | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 278 |
```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/WasmDynamicLinq/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 |
```unknown
``` | /content/code_sandbox/src-blazor/BlazorWASMExample/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/BlazorWASMExample/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 |
```unknown
@page "/fetchdata2"
@using System.Linq.Dynamic.Core
@inject HttpClient Http
<h1>Weather forecast</h1>
<p>This component demonstrates fetching data from the server.</p>
@if (forecasts == null)
{
<p><em>Loading...</em></p>
}
else
{
<div class="d-flex">
<h3>Order by</h3>
<div class="f... | /content/code_sandbox/src-blazor/BlazorWASMExample/Pages/FetchData2.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 638 |
```unknown
@page "/counter"
@using System.Linq.Dynamic.Core
@using System.Reflection.Emit
@using System.Reflection
@using Microsoft.AspNetCore.Components.WebAssembly.Infrastructure
<h1>Counter</h1>
<p>Current count: @currentCount</p>
<button class="btn btn-primary" @onclick="IncrementCount">Click me</button>
@code... | /content/code_sandbox/src-blazor/BlazorWASMExample/Pages/Counter.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 382 |
```unknown
@page "/fetchdata"
@using System.Linq.Dynamic.Core
@inject HttpClient Http
<h1>Weather forecast</h1>
<p>This component demonstrates fetching data from the server.</p>
@if (forecasts == null)
{
<p><em>Loading...</em></p>
}
else
{
<div class="d-flex">
<h3>Order by</h3>
<div class="fo... | /content/code_sandbox/src-blazor/BlazorWASMExample/Pages/FetchData.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 637 |
```unknown
@page "/"
<h1>Hello, world!</h1>
Welcome to your new app.
<SurveyPrompt Title="How is Blazor working for you?" />
``` | /content/code_sandbox/src-blazor/BlazorWASMExample/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 | 34 |
```unknown
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</... | /content/code_sandbox/src-blazor/BlazorAppTest/App.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 82 |
```unknown
@using System.Net.Http
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.JSInterop
@using BlazorAppTest
@using BlazorAppTest.Shared
``` | /content/code_sandbox/src-blazor/BlazorAppTest/_Imports.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 51 |
```smalltalk
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Text;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.DependencyInjection;
namespace BlazorAppTest
{
public class Program
{
public static async Task Main(string[... | /content/code_sandbox/src-blazor/BlazorAppTest/Program.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 99 |
```xml
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RazorLangVersion>3.0</RazorLangVersion>
</PropertyGroup>
<PropertyGroup>
<BlazorWebAssemblyEnableLinking>true</BlazorWebAssemblyEnableLinking>
</PropertyGroup>
<ItemGroup>
... | /content/code_sandbox/src-blazor/BlazorAppTest/BlazorAppTest.csproj | xml | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 249 |
```unknown
@inherits LayoutComponentBase
<div class="sidebar">
<NavMenu />
</div>
<div class="main">
<div class="top-row px-4">
<a href="path_to_url" target="_blank" class="ml-md-auto">About</a>
</div>
<div class="content px-4">
@Body
</div>
</div>
``` | /content/code_sandbox/src-blazor/BlazorAppTest/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 | 84 |
```unknown
<div class="top-row pl-4 navbar navbar-dark">
<a class="navbar-brand" href="">BlazorAppTest</a>
<button class="navbar-toggler" @onclick="ToggleNavMenu">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="@NavMenuCssClass" @onclick="ToggleNavMenu">
<ul class="nav f... | /content/code_sandbox/src-blazor/BlazorAppTest/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 | 303 |
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>BlazorAppTest</title>
<base href="/" />
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="css/site.css" rel="stylesheet" />
</head>
<body>
... | /content/code_sandbox/src-blazor/BlazorAppTest/wwwroot/index.html | html | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 156 |
```css
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
a, .btn-link {
color: #0366d6;
}
.btn-primary {
color: #fff;
background-color: #1b6ec2;
border-color: #1861ac;
}
app {
position: relative;
... | /content/code_sandbox/src-blazor/BlazorAppTest/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 | 966 |
```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/BlazorWASMExample/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/BlazorAppTest/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/BlazorAppTest/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 |
```unknown
@page "/"
@inject HttpClient Http
@using System.Linq.Dynamic.Core
<h1>Weather forecast</h1>
<p>This component demonstrates fetching data from the server.</p>
@if (forecasts == null)
{
<p><em>Loading...</em></p>
}
else
{
<div class="d-flex">
<h3>Order by</h3>
<div class="form-inline ... | /content/code_sandbox/src-blazor/BlazorAppTest/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 | 653 |
```unknown
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutVi... | /content/code_sandbox/src-blazor/BlazorAppServer/App.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 113 |
```unknown
@using System.Net.Http
@using Microsoft.AspNetCore.Authorization
@using Microsoft.AspNetCore.Components.Authorization
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using Microsoft.AspNetCore.Components.Web.Virtualizatio... | /content/code_sandbox/src-blazor/BlazorAppServer/_Imports.razor | unknown | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 80 |
```smalltalk
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorPages();
builder.Services.AddServerSideBlazor();
builder.Services.AddLocalization();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
... | /content/code_sandbox/src-blazor/BlazorAppServer/Program.cs | smalltalk | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 102 |
```xml
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.7" ... | /content/code_sandbox/src-blazor/BlazorAppServer/BlazorAppServer.csproj | xml | 2016-04-08T16:41:51 | 2024-08-16T05:55:59 | System.Linq.Dynamic.Core | zzzprojects/System.Linq.Dynamic.Core | 1,537 | 331 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.