获取自定义html控件中表达式的值

时间:2017-01-25 13:38:54

标签: c# .net asp.net-mvc html-helper

我有一个自定义html控件,导致select2下拉列表。 它在字符串,guid和int值上都很完美,但在列表中却没有。

变量propertyValueString包含一个属性的值,该属性在大多数情况下都可以,但不在列表中(在我的例子中是Guid列表)。它导致" System.Collections.Generic.List`1 [System.Guid]",但应该是guid的csv列表。

编辑:添加了签名和添加的电话

知道如何让它适用于列表对象吗?

select *
from baskets b
join basket_items bi 
  on bi.basket_id = b.id
  and not
  (
    bi.purchaseable_type = 'App\Job' and
    bi.purchaseable_id in (select id from jobs where expiry_dt > now())
  )
where b.user_id = 1;

0 个答案:

没有答案