Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Common/Helper/IdHelper.cs
2022-09-10 20:05:45 +08:00

17 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Common.Helper
{
public static class IdHelper
{
public static dynamic[] ToDynamicArray(this IEnumerable<long> ids)
{
return ids.Select(id => (dynamic)id).ToArray();
}
}
}