dynamics crm - Error with OutParameter in custom Action -


there error: the type outargument`1 of property result not supported. , there code

 [output("result")]   public outargument<entitycollection> result { get; set; } 

i error when try update assembly. ideas?

you cannot use type entitycollection in generic outargument<t> properties.

supported types are:

  • boolean
  • datetime
  • decimal
  • double
  • entityreference
  • int32
  • money
  • optionsetvalue
  • string

see msdn.


Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -