using System;
using System.Collections.Generic;
using System.Linq;
using Znyc.Recruitment.Admin.Commons.Data;
namespace Znyc.Recruitment.Admin.Commons.Extensions
{
///
/// 集合扩展方法
///
public static class CollectionExtensions
{
///
/// 如果条件成立,添加项
///
public static void AddIf(this ICollection collection, T value, bool flag)
{
Check.NotNull(collection, nameof(collection));
if (flag)
{
collection.Add(value);
}
}
///
/// 如果条件成立,添加项
///
public static void AddIf(this ICollection collection, T value, Func func)
{
Check.NotNull(collection, nameof(collection));
if (func())
{
collection.Add(value);
}
}
///
/// 如果不存在,添加项
///
public static void AddIfNotExist(this ICollection collection, T value, Func existFunc = null)
{
Check.NotNull(collection, nameof(collection));
bool exists = existFunc == null ? collection.Contains(value) : existFunc(value);
if (!exists)
{
collection.Add(value);
}
}
///
/// 如果不为空,添加项
///
public static void AddIfNotNull(this ICollection collection, T value) where T : class
{
Check.NotNull(collection, nameof(collection));
if (value != null)
{
collection.Add(value);
}
}
///
/// 获取对象,不存在对使用委托添加对象
///
public static T GetOrAdd(this ICollection collection, Func selector, Func factory)
{
Check.NotNull(collection, nameof(collection));
T item = collection.FirstOrDefault(selector);
if (item == null)
{
item = factory();
collection.Add(item);
}
return item;
}
}
}