Skip to content

Instantly share code, notes, and snippets.

View strvmarv's full-sized avatar

Paul M strvmarv

View GitHub Profile
@strvmarv
strvmarv / Maybe.cs
Created February 25, 2014 01:54 — forked from bradwilson/Maybe.cs
public struct Maybe<T>
{
public static readonly Maybe<T> NoValue;
public Maybe(T value, bool hasValue = true) : this()
{
HasValue = hasValue;
Value = value;
}
using Dapper;
using Oracle.ManagedDataAccess.Client;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
public class OracleDynamicParameters : Dapper.SqlMapper.IDynamicParameters {
private static Dictionary<SqlMapper.Identity, Action<IDbCommand, object>> paramReaderCache = new Dictionary<SqlMapper.Identity, Action<IDbCommand, object>>( );
using System;
class C
{
static void Main()
{
const long x = -1;
long y = x;
Console.WriteLine(unchecked(long.MinValue / x));
Console.WriteLine(unchecked(long.MinValue / y));

Keybase proof

I hereby claim:

  • I am strvmarv on github.
  • I am strvmarv (https://keybase.io/strvmarv) on keybase.
  • I have a public key whose fingerprint is D202 D386 C327 C2A7 2579 91D3 D00A 97C8 008D CF43

To claim this, I am signing this object:

public static class HtmlHelperExtensions
{
private static readonly char Separator = '/';
private static readonly string TemplateFolder = HttpContext.Current.Server.MapPath("~/App/templates");
private static readonly IViewEngine ViewEngine = new HandlebarsRazorViewEngine();
public static MvcHtmlString RenderEmber(this HtmlHelper helper, string path = "", bool noTemplateName = false)
{
if (HttpRuntime.Cache[path] == null)
{
using System.Data;
using System.Data.Entity;
using System.Data.Entity.Core.Objects;
using System.Data.SqlClient;
namespace Extensions
{
public static class EntityFrameworkExtensions
{
public static void BulkCopy(
@strvmarv
strvmarv / ContextExtensions.cs
Created November 19, 2015 20:56
Partial ObjectContext Auditing Example using SaveChanges hiding and ObjectStateManager
public partial class YourEntities
{
public bool AuditAutoUserAndDateBypass { get; set; }
public bool AuditBypass { get; set; }
public string AuditProcess { get; set; }
public string AuditSource { get; set; }
public int AuditUser { get; set; }
partial void OnContextCreated()
{
CREATE PARTITION FUNCTION [pf_DayOfTheYear](SMALLINT) AS RANGE LEFT FOR VALUES (
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120,
121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150,
151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180,
181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208
CREATE PARTITION SCHEME [ps_DayOfTheYear] AS PARTITION [pf_DayOfTheYear] ALL TO ([PRIMARY])
CREATE FUNCTION [dbo].[udf_GetDayOfTheYear] (@input DATETIME = NULL)
RETURNS SMALLINT AS
BEGIN
DECLARE @doty SMALLINT
IF (@input IS NULL)
BEGIN
SELECT @doty = DATEPART(dy, GETUTCDATE())
END