###This repository contains submodules.
- Clone it with
git clone --recursive - If you forgot, run
git submodule update --init --recursive
| CREATE FUNCTION dbo.genRevTableColumnsDDL( @TableName AS VARCHAR(40) ) RETURNS VARCHAR(MAX) | |
| AS | |
| BEGIN | |
| DECLARE @sql NVARCHAR(MAX) = N''; | |
| SELECT @sql += CASE | |
| WHEN column_ordinal = 1 AND UPPER(name) = 'ID' THEN | |
| CHAR(9) + '[ID]'+ CHAR(9) + 'BIGINT' + CHAR(9) + 'NOT NULL PRIMARY KEY IDENTITY,' + CHAR(13) + CHAR(10) + | |
| CHAR(9) + '['+@TableName+'ID]'+ CHAR(9) + 'BIGINT' + CHAR(9) + 'NOT NULL,' + CHAR(13) + CHAR(10) | |
| ELSE | |
| CHAR(9) + '[' + name + '] ' + system_type_name + ' NULL,'+ CHAR(13) + CHAR(10) |
###This repository contains submodules.
git clone --recursivegit submodule update --init --recursiveSummer Dreaming (bacardi) - what a feeling to be dreaming never been so easy
sudo xcodebuild -license
you will need:
https://chromium.googlesource.com/external/gyp
git clone https://chromium.googlesource.com/external/gyp
cd gyp
sudo ./setup.py install
| public IEnumerable<MyEntity> GetMyEntitys(IEnumerable<long> MyEntityIds) | |
| { | |
| IEnumerable<IEnumerable<long>> segmentedMyEntitys = MyEntityIds.ToArray().Split(100); | |
| IQueryable<EF.MyEntity> x = from MyEntity in _dbContext.MyEntitys select MyEntity; | |
| Expression<Func<EF.MyEntity,bool>> expression = null; | |
| foreach (IEnumerable<long> segmentedMyEntityIds in segmentedMyEntitys) | |
| { | |
| Expression<Func<EF.MyEntity,bool>> y = p => segmentedMyEntityIds.Contains(p.MyEntityId); |
tfpt uu . /noget /recursive
tfpt online /adds /deletes /diff /noprompt /recursive
var lifetime = new PerRequestLifetimeManager();
container.RegisterType<DbContext, EntitiesDbContext>(lifetime);
Microsoft.Web.Infrastructure.DynamicModuleHelper.DynamicModuleUtility.RegisterModule(typeof(UnityPerRequestHttpModule));
| using System; | |
| using System.Collections.Generic; | |
| using System.Runtime.InteropServices; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| namespace TaskParallel | |
| { | |
| public class Class1 | |
| { |