Closed erapote closed 5 years ago
Thank you for finding it. I have never noticed about this missing before. I have fixed it. Feel free to open if it still happens
Thank you very much! :)
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Hello,
First of all, thanks for this cool project. Been looking to find something like this as a guide on my software development projects (other than using ABP).
This may not actually be an issue but I was trying to have a successful build but the solution fails because KeyValueObject is missing. Can't find it anywhere in code. Please point me in the right direction.
public static class EnumHelper { public static IEnumerable<KeyValueObject> GetEnumKeyValue<TEnum, TKey>()
where TKey : class
{
var metas = GetMetadata<TEnum, TKey>();
var results = metas.Item1.Zip(metas.Item2, (key, value) =>
new KeyValueObject
(
key,
value
)
);
return results;
}
Thank you very much.