如何获取 Nullable Enum 的 toString 方法来构建表达式调用

发布于 2025-01-10 02:05:54 字数 772 浏览 0 评论 0原文

enum StrategyType
{
   Straddle,
   Butterfly
}

class Test
{
   public StrategyType strategy {get; set;}
}

bool IsNullableEnum(Type t)
{
  Type u = Nullable.GetUnderlyingType(t);
  return (u != null) && u.IsEnum;
}

var toStringMethod = typeof(Enum).GetMethod("ToString", new Type[] { });

var entity = new Test();
var entityParameter = Expression.Parameter(entity);
Expression memberProperty = Expression.Property(entityParameter, "strategy");

    memberProperty = Expression.Call(memberProperty, toStringMethod);

如果我将 Test 类中的 StrategyType Enum 更改为 Nullable,如下所示:

StrategyType? strategyType {get; set;}

然后,我无法找到获取 Nullable Enum 的 toString 方法的方法,类似于我为简单 Enum StrategyType 所做的方法。

任何人都可以帮忙吗?

enum StrategyType
{
   Straddle,
   Butterfly
}

class Test
{
   public StrategyType strategy {get; set;}
}

bool IsNullableEnum(Type t)
{
  Type u = Nullable.GetUnderlyingType(t);
  return (u != null) && u.IsEnum;
}

var toStringMethod = typeof(Enum).GetMethod("ToString", new Type[] { });

var entity = new Test();
var entityParameter = Expression.Parameter(entity);
Expression memberProperty = Expression.Property(entityParameter, "strategy");

    memberProperty = Expression.Call(memberProperty, toStringMethod);

If I change the StrategyType Enum in the Test class to Nullable like below:

StrategyType? strategyType {get; set;}

Then, I am unable to find out the way to get the toString method for Nullable Enum, similar to the one I have done for simple Enum StrategyType.

Can anyone please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

面犯桃花 2025-01-17 02:05:54

一般来说,您应该发出对实际类型方法的调用,而不是Enum。它适用于可空和不可空值类型,包括枚举。

您可以通过使用 GetMethod 调用中的实际类型,或(最好)使用 string methodNameExpressing.Call 重载来实现此目的,例如

// (Test e) =>
var entityParameter = Expression.Parameter(typeof(Test), "e");
// e.strategy
Expression source = Expression.Property(entityParameter, "strategy");
// e.strategy.ToString()
var toStringCall = Expression.Call(source, "ToString", Type.EmptyTypes);

In general you should emit call to the actual type method, not Enum. It would work for both nullable and non nullable value types, including enums.

You can do that by using the actual type in GetMethod call, or (preferable) the Expressing.Call overload with string methodName, e.g.

// (Test e) =>
var entityParameter = Expression.Parameter(typeof(Test), "e");
// e.strategy
Expression source = Expression.Property(entityParameter, "strategy");
// e.strategy.ToString()
var toStringCall = Expression.Call(source, "ToString", Type.EmptyTypes);
ヅ她的身影、若隐若现 2025-01-17 02:05:54

Nullable<> 有点棘手。当您找到这样的属性时,您必须对照给定实体检查从 prop.GetValue(entity) 返回的内容。要么是 null (并且尝试调用 ToString() 是不可能的),要么返回值类型(但装箱为对象),但您可以调用正常 ToString() 方法。

if (IsNullableEnum(prop.PropertyType) && prop.GetValue(entity) != null)
    memberProperty = Expression.Call(memberProperty, toStringMethod);

Nullable<> is a little tricky. When you find such a property you have to check against the given entity what you get back from prop.GetValue(entity). Either this is null (and trying to call ToString() would be impossible) or you get back the value type (but boxed as an object), but you can call the normal ToString() method.

if (IsNullableEnum(prop.PropertyType) && prop.GetValue(entity) != null)
    memberProperty = Expression.Call(memberProperty, toStringMethod);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文