Entities exposed by DomainService operations must have at least one public property marked with the

今天遇到一个问题由于存储过程中,根据一个标志变量返回了几个不同的字段名(通过Group By来返回的值),所以在EF中创建Complex Type的时候,EF只会创建存储过程中最上面代码返回的集合中的字段来自动生成一个实体类,下面代码返回的实体类需要自己去手工创建,在创建的时候需要设置一个Key值,不然在编译Silverlight工程的时候会报“Entities exposed by DomainService operations must have at least one public property marked with the KeyAttribute. ”异常,所以需要在存储过程中定义一个字段(我这里是通过Row_Number()来作为Key值的)来作为Key,所以当手动创建完Complex Type后,需要将其中的一个字段标记为 [System.ComponentModel.DataAnnotations.KeyAttribute()]特性就OK了。

你可能感兴趣的:(Entities exposed by DomainService operations must have at least one public property marked with the)