Skip to content

Instantly share code, notes, and snippets.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace My.Namespace.Helper
{
public static class RepositoryExtensions
{
public static void UpdateCollection<T>(this IRepository<T> repository, ICollection<T> updatedEntities, Func<T, bool> queryForExisting, Func<T, T> bindAdded = null)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Linq.Expressions;
using System.Web.Mvc;
using System.Web.Mvc.Html;
public static class EnumEditorHtmlHelper
{