Skip to content

Commit 9eb1b03

Browse files
author
zzzprojects
committed
v1.0.3
v1.0.3
1 parent 0da51be commit 9eb1b03

File tree

76 files changed

+1056
-415
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+1056
-415
lines changed

src/Z.Expressions.SqlServer.Eval/EvalCompiler/EvalCompiler.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using System.Collections;
@@ -37,10 +37,10 @@ internal static EvalDelegate Compile(EvalContext context, string code, ListDicti
3737
return cachedDelegate;
3838
}
3939

40-
Dictionary<string, Type> parameterDict = new Dictionary<string, Type>();
40+
var parameterDict = new Dictionary<string, Type>();
4141
foreach (DictionaryEntry parameterType in parameterTypes)
4242
{
43-
parameterDict.Add((string)parameterType.Key, (Type)parameterType.Value);
43+
parameterDict.Add((string) parameterType.Key, (Type) parameterType.Value);
4444
}
4545

4646
// Options

src/Z.Expressions.SqlServer.Eval/EvalCompiler/Parameter/ResolveCacheKey.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using System.Text;
@@ -24,7 +24,7 @@ private static string ResolveCacheKey(EvalContext context, Type tdelegate, strin
2424

2525
foreach (var value in parameterTypes.Values)
2626
{
27-
sb.Append(((Type)value).FullName);
27+
sb.Append(((Type) value).FullName);
2828
}
2929

3030
// Concatenate:

src/Z.Expressions.SqlServer.Eval/EvalCompiler/Parameter/ResolveParameter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using System.Collections;

src/Z.Expressions.SqlServer.Eval/EvalContext/Compile/EvalContext.Compile.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
7-
8-
using System;
9-
using System.Collections.Generic;
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
107

118
namespace Z.Expressions
129
{

src/Z.Expressions.SqlServer.Eval/EvalContext/EvalContext.RegisterDefaultAlias.cs

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using System.Collections;
@@ -346,10 +346,15 @@ public void RegisterDefaultAlias()
346346

347347
// New
348348
RegisterType(typeof (CommandType));
349-
RegisterType(typeof(Match));
349+
RegisterType(typeof (Match));
350350

351351
// Library
352352
RegisterType(typeof (EvalManager));
353+
354+
RegisterExtensionMethod(typeof (Extensions));
355+
356+
// Static Members
357+
RegisterStaticMember(typeof(Regex));
353358
}
354359
}
355360
}

src/Z.Expressions.SqlServer.Eval/EvalContext/Register/EvalContext.RegisterAlias.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using Z.Expressions.SqlServer.Eval;

src/Z.Expressions.SqlServer.Eval/EvalContext/Register/EvalContext.RegisterAssembly.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System.Linq;
99
using System.Reflection;

src/Z.Expressions.SqlServer.Eval/EvalContext/Register/EvalContext.RegisterDomainAssemblies.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using System.Linq;

src/Z.Expressions.SqlServer.Eval/EvalContext/Register/EvalContext.RegisterExtensionMethod.cs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
9-
using System.Collections.Concurrent;
109
using System.Collections.Generic;
1110
using System.Linq;
1211
using System.Reflection;
@@ -25,7 +24,7 @@ public EvalContext RegisterExtensionMethod(params Type[] types)
2524
foreach (var type in types)
2625
{
2726
var extensionMethods = type.GetMethods(BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic)
28-
.Where(x => x.IsDefined(typeof(ExtensionAttribute), false)).ToArray();
27+
.Where(x => x.IsDefined(typeof (ExtensionAttribute), false)).ToArray();
2928

3029
RegisterExtensionMethod(extensionMethods);
3130
}
@@ -47,11 +46,11 @@ public EvalContext RegisterExtensionMethod(params MethodInfo[] extensionMethods)
4746
#else
4847
var dict = new ConcurrentDictionary<MethodInfo, byte>();
4948
#endif
50-
dict.TryAdd(method, (byte)1);
49+
dict.TryAdd(method, (byte) 1);
5150
return dict;
5251
}, (s, list) =>
5352
{
54-
list.TryAdd(method, (byte)1);
53+
list.TryAdd(method, (byte) 1);
5554
return list;
5655
});
5756
}

src/Z.Expressions.SqlServer.Eval/EvalContext/Register/EvalContext.RegisterGlobalConstant.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using System.Linq.Expressions;

src/Z.Expressions.SqlServer.Eval/EvalContext/Register/EvalContext.RegisterGlobalVariable.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using Z.Expressions.SqlServer.Eval;

src/Z.Expressions.SqlServer.Eval/EvalContext/Register/EvalContext.RegisterStaticMember.cs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
9-
using System.Collections.Concurrent;
109
using System.Collections.Generic;
1110
using System.Reflection;
1211
using Z.Expressions.SqlServer.Eval;
@@ -48,11 +47,11 @@ public EvalContext RegisterStaticMember(params MemberInfo[] members)
4847
#else
4948
var dict = new ConcurrentDictionary<MemberInfo, byte>();
5049
#endif
51-
dict.TryAdd(member, (byte)1);
50+
dict.TryAdd(member, (byte) 1);
5251
return dict;
5352
}, (s, list) =>
5453
{
55-
list.TryAdd(member, (byte)1);
54+
list.TryAdd(member, (byte) 1);
5655
return list;
5756
});
5857
}

src/Z.Expressions.SqlServer.Eval/EvalContext/Register/EvalContext.RegisterType.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using Z.Expressions.SqlServer.Eval;

src/Z.Expressions.SqlServer.Eval/EvalContext/Unregister/EvalContext.UnregisterAlias.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using Z.Expressions.SqlServer.Eval;
99

src/Z.Expressions.SqlServer.Eval/EvalContext/Unregister/EvalContext.UnregisterAll.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
namespace Z.Expressions
99
{

src/Z.Expressions.SqlServer.Eval/EvalContext/Unregister/EvalContext.UnregisterAssembly.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System.Reflection;
99

src/Z.Expressions.SqlServer.Eval/EvalContext/Unregister/EvalContext.UnregisterExtensionMethod.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
9-
using System.Collections.Concurrent;
109
using System.Collections.Generic;
1110
using System.Linq;
1211
using System.Reflection;
@@ -25,7 +24,7 @@ public EvalContext UnregisterExtensionMethod(params Type[] types)
2524
foreach (var type in types)
2625
{
2726
var extensionMethods = type.GetMethods(BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic)
28-
.Where(x => x.IsDefined(typeof(ExtensionAttribute), false)).ToArray();
27+
.Where(x => x.IsDefined(typeof (ExtensionAttribute), false)).ToArray();
2928

3029
UnregisterExtensionMethod(extensionMethods);
3130
}

src/Z.Expressions.SqlServer.Eval/EvalContext/Unregister/EvalContext.UnregisterGlobalConstant.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System.Linq.Expressions;
99
using Z.Expressions.SqlServer.Eval;

src/Z.Expressions.SqlServer.Eval/EvalContext/Unregister/EvalContext.UnregisterGlobalVariable.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using Z.Expressions.SqlServer.Eval;
99

src/Z.Expressions.SqlServer.Eval/EvalContext/Unregister/EvalContext.UnregisterStaticMember.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
9-
using System.Collections.Concurrent;
109
using System.Collections.Generic;
1110
using System.Reflection;
1211
using Z.Expressions.SqlServer.Eval;

src/Z.Expressions.SqlServer.Eval/EvalContext/Unregister/EvalContext.UnregisterType.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using Z.Expressions.SqlServer.Eval;

src/Z.Expressions.SqlServer.Eval/EvalContext/_EvalContext.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using System.Collections.Generic;

src/Z.Expressions.SqlServer.Eval/EvalDelegate/EvalDelegate.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Description: Evaluate C# code and expression in T-SQL stored procedure, function and trigger.
22
// Website & Documentation: https://github.com/zzzprojects/Eval-SQL.NET
3-
// Forum: https://zzzprojects.uservoice.com/forums/328452-eval-sql-net
4-
// License: http://www.zzzprojects.com/license-agreement/
3+
// Forum & Issues: https://github.com/zzzprojects/Eval-SQL.NET/issues
4+
// License: https://github.com/zzzprojects/Eval-SQL.NET/blob/master/LICENSE
55
// More projects: http://www.zzzprojects.com/
6-
// Copyright (c) 2015 ZZZ Projects. All rights reserved.
6+
// Copyright © ZZZ Projects Inc. 2014 - 2016. All rights reserved.
77

88
using System;
99
using System.Collections;

0 commit comments

Comments
 (0)