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 using System.Collections; using System.Collections.Generic; using System.Linq.Dynamic.Core.Tests.Helpers; using System.Linq.Dynamic.Core.Tests.Helpers.Models; using System.Linq.Expressions; using System.Reflection; namespace System.Linq.Dynamic.Core.ConsoleTestApp { public static class E { ...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp/Program.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
2,225
```smalltalk using System; using System.Data.Entity; using System.Linq; using System.Linq.Dynamic.Core; namespace ConsoleApp.EntityFrameworkClassic { internal class Program { public static string ConnectionString = "Data Source=(localdb)\\MSSQLLocalDB;Initial Catalog=EFClassic;Integrated Security=True;...
/content/code_sandbox/src-console/ConsoleApp.EntityFrameworkClassic/Program.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
432
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp2.1</TargetFramework> </PropertyGroup> <ItemGroup> <PackageReference Include="Z.EntityFramework.Classic" Version="7.1.7" /> </ItemGroup> <ItemGroup> <ProjectReference...
/content/code_sandbox/src-console/ConsoleApp.EntityFrameworkClassic/ConsoleApp.EntityFrameworkClassic.csproj
xml
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
117
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net6.0</TargetFramework> <RootNamespace>ConsoleApp_net6._0</RootNamespace> <Nullable>enable</Nullable> </PropertyGroup> <ItemGroup> <ProjectReference Include="..\....
/content/code_sandbox/src-console/ConsoleApp_net6.0/ConsoleApp_net6.0.csproj
xml
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
100
```smalltalk using System; using System.Collections.Generic; using System.Linq; using System.Linq.Dynamic.Core; using System.Linq.Expressions; namespace ConsoleApp_net6._0 { public class X { public string Key { get; set; } = null!; public List<Y>? Contestants { get; set; } } public cl...
/content/code_sandbox/src-console/ConsoleApp_net6.0/Program.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
744
```smalltalk using System; using System.Linq; using ConsoleAppEF2.Database; using System.Linq.Dynamic.Core; using Newtonsoft.Json; namespace ConsoleAppEF31 { class Program { static void Main(string[] args) { var users = new[] { new User { FirstName = "Doe" } }.AsQueryable(); ...
/content/code_sandbox/src-console/ConsoleAppEF3.1/Program.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
1,143
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp3.1</TargetFramework> <AssemblyName>ConsoleAppEF31</AssemblyName> <RootNamespace>ConsoleAppEF31</RootNamespace> <DefineConstants>EF3</DefineConstants> </Prope...
/content/code_sandbox/src-console/ConsoleAppEF3.1/ConsoleApp_netcore3.1_EF3.1.csproj
xml
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
360
```smalltalk using System; using System.Collections.Generic; using System.Linq; using System.Linq.Dynamic.Core; using System.Text.Json; using System.Threading.Tasks; using ConsoleAppEF2.Database; using Microsoft.EntityFrameworkCore; namespace ConsoleApp_net5_0_EF5_InMemory; static class Program { private static r...
/content/code_sandbox/src-console/ConsoleAppEF5_InMemory/Program.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
370
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net5.0</TargetFramework> <LangVersion>10</LangVersion> <Nullable>enable</Nullable> </PropertyGroup> <ItemGroup> <Compile Include="..\ConsoleAppEF2.0\Database\Produ...
/content/code_sandbox/src-console/ConsoleAppEF5_InMemory/ConsoleApp_net5.0_EF5_InMemory.csproj
xml
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
211
```smalltalk using System.Collections.Generic; using ConsoleAppEF2.Database; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; namespace ConsoleApp_net5_0_EF5_InMemory { public class TestContextEF5 : DbContext { public static readonly ILoggerFactory MyLoggerFactory = LoggerFactor...
/content/code_sandbox/src-console/ConsoleAppEF5_InMemory/Database/TestContextEF5.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
267
```unknown <?xml version="1.0" encoding="utf-8"?> <packages> <package id="EntityFramework" version="6.1.3" targetFramework="net452" /> <package id="FSharp.Core" version="4.0.0.1" targetFramework="net452" /> <package id="Linq.Expression.Optimizer" version="1.0.7" targetFramework="net452" /> </packages> ```
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/packages.config
unknown
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
97
```unknown <?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> <!-...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/App.config
unknown
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
358
```smalltalk using System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452 { class Program { static void Main(string[] args) { using (var context = new KendoGridDbContext()) { string search = "2"; ...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Program.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
560
```xml <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="14.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/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/System.Linq.Dynamic.Core.ConsoleTestApp.net452.csproj
xml
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
1,712
```smalltalk using System.Collections.Generic; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class Function { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Function() {...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/Function.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
197
```smalltalk using System.Collections.Generic; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class Role { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Role() { ...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/Role.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
137
```smalltalk using System.Collections.Generic; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class Country { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Country() { ...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/Country.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
143
```smalltalk namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class Employee { public long Id { get; set; } public int EmployeeNumber { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public stri...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/Employee.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
193
```smalltalk using System.Data.Entity; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class KendoGridDbContext : DbContext { public KendoGridDbContext() : base("name=KendoGrid") { } public virtual DbSet<Company> KendoGridCompany {...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/KendoGridDbContext.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
536
```smalltalk using System.Collections.Generic; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class User { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public User() { ...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/User.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
149
```smalltalk namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class Product { public long Id { get; set; } public string Code { get; set; } public string Name { get; set; } } } ```
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/Product.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
55
```smalltalk using System.Collections.Generic; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class SubFunction { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public SubFunction() ...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/SubFunction.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
162
```smalltalk using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class ViewEmployeeDetails { [Key] [Column(Order = 0)] [DatabaseGenerated(DatabaseGeneratedOpti...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/VW_EmployeeDetails.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
270
```smalltalk namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class OU { public long Id { get; set; } public string Code { get; set; } public string Name { get; set; } } } ```
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/OU.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
55
```smalltalk using System.Collections.Generic; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class MainCompany { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public MainCompany() ...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/MainCompany.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
137
```smalltalk using System.Collections.Generic; namespace System.Linq.Dynamic.Core.ConsoleTestApp.net452.Entities { public partial class Company { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Company() { ...
/content/code_sandbox/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/Entities/Company.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
158
```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/src-console/System.Linq.Dynamic.Core.ConsoleTestApp.net452/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
291
```smalltalk using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Linq.Dynamic.Core; using System.Linq.Dynamic.Core.CustomTypeProviders; using System.Reflection; using System.Runtime.CompilerServices; using ConsoleAppEF2.Database; using Microsoft.EntityFrameworkCore; using Ne...
/content/code_sandbox/src-console/ConsoleAppEF2.0/Program.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
1,384
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp2.0</TargetFramework> <AssemblyName>ConsoleAppEF2</AssemblyName> <RootNamespace>ConsoleAppEF2</RootNamespace> </PropertyGroup> <ItemGroup> <PackageRefere...
/content/code_sandbox/src-console/ConsoleAppEF2.0/ConsoleApp_netcore2.0_EF2.0.1.csproj
xml
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
223
```smalltalk using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ConsoleAppEF2.Database { public class ProductDynamic { [Key] public int Key { get; set; } [NotMapped] public dynamic Propert...
/content/code_sandbox/src-console/ConsoleAppEF2.0/Database/ProductDynamic.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 using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Console; namespace ConsoleAppEF2.Database { public class TestContext : DbContext { #if EF3 || EF5 public static readonly ILoggerFactory MyLoggerFactory = LoggerFactory.Create(builder...
/content/code_sandbox/src-console/ConsoleAppEF2.0/Database/TestContext.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
273
```smalltalk using System.ComponentModel.DataAnnotations; namespace ConsoleAppEF2.Database { public class BaseDto { [Key] public int Key { get; set; } public string BaseName { get; set; } } } ```
/content/code_sandbox/src-console/ConsoleAppEF2.0/Database/BaseDto.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
50
```smalltalk using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace ConsoleAppEF2.Database { public class ComplexDto { [Key] public int Key { get; set; } public string X { get; set; } public IEnumerable<BaseDto> ListOfBaseDtos { get; set; } ...
/content/code_sandbox/src-console/ConsoleAppEF2.0/Database/ComplexDto.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
71
```smalltalk namespace ConsoleAppEF2.Database { public class OtherTestDto : BaseDto { public string Name { get; set; } } } ```
/content/code_sandbox/src-console/ConsoleAppEF2.0/Database/OtherTestDto.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
34
```smalltalk namespace ConsoleAppEF2.Database { public class TestDto : BaseDto { public string Name { get; set; } } } ```
/content/code_sandbox/src-console/ConsoleAppEF2.0/Database/TestDto.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
33
```smalltalk using System.ComponentModel.DataAnnotations; namespace ConsoleAppEF2.Database { public class Brand { [Key] public string BrandType { get; set; } [Required] public string BrandName { get; set; } } } ```
/content/code_sandbox/src-console/ConsoleAppEF2.0/Database/Brand.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
54
```smalltalk using System; using System.ComponentModel.DataAnnotations; namespace ConsoleAppEF2.Database { public class Car { [Key] public int Key { get; set; } [Required] [StringLength(8)] public string Vin { get; set; } [Required] public string Year {...
/content/code_sandbox/src-console/ConsoleAppEF2.0/Database/Car.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
175
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <Target Name="CopyDllAfterBuild" AfterTargets="PostBuildEvent"> <Copy SourceFi...
/content/code_sandbox/src-console/Demo.Plugin/Demo.Plugin.csproj
xml
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
106
```smalltalk namespace Demo.Plugin; public static class MyPlugin { public static void Print() { Console.WriteLine("Hello, World!"); } } ```
/content/code_sandbox/src-console/Demo.Plugin/MyPlugin.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
31
```smalltalk using System; using System.Collections.Generic; using System.Linq; using System.Linq.Dynamic.Core; using ConsoleAppEF2.Database; using ConsoleAppEF21.Database; using Newtonsoft.Json; namespace ConsoleAppEF21 { class Program { //class C : AbstractDynamicLinqCustomTypeProvider, IDynamicLinkC...
/content/code_sandbox/src-console/ConsoleAppEF2.1/Program.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
1,487
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp2.0</TargetFramework> <AssemblyName>ConsoleAppEF21</AssemblyName> <RootNamespace>ConsoleAppEF21</RootNamespace> </PropertyGroup> <ItemGroup> <Compile Include="..\ConsoleAppEF2.0\D...
/content/code_sandbox/src-console/ConsoleAppEF2.1/ConsoleApp_netcore2.0_EF2.1.csproj
xml
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
254
```smalltalk using ConsoleAppEF2.Database; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Console; namespace ConsoleAppEF21.Database { public class TestContext : DbContext { public static readonly LoggerFactory MyLoggerFactory = new LoggerFac...
/content/code_sandbox/src-console/ConsoleAppEF2.1/Database/TestContext.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
245
```smalltalk #pragma warning disable 1591 //your_sha256_hash-------------- // <auto-generated> // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //your_sha256_hash-------------- [assembly: globa...
/content/code_sandbox/test-xamarin/TestSLDC.Android/Resources/Resource.designer.cs
smalltalk
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
263,152