Link to home
Start Free TrialLog in
Avatar of jimseiwert
jimseiwertFlag for United States of America

asked on

WCF RIA Silverlight 4 Domain Service Key Attribute

I am getting the below error when trying to add a stored procedure to my project. It is asking for a key to be defined. I have never had to do this for a stored proc. How would I go about this?

I am using Linq To Sql with WCF RIA

Error      1      The entity 'SP_Role_AreasResult' in DomainService 'Operations_DS' does not have a key defined. Entities exposed by DomainService operations must have at least one public property marked with the KeyAttribute.      Operations_Client_Silverlight
ASKER CERTIFIED SOLUTION
Avatar of tovvenki
tovvenki

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jimseiwert

ASKER

Maybe I am missing something but below is my code and the meta data but i still get the same error. What am i missing?
*************Meta Data
 <MetadataTypeAttribute(GetType(sp_role_areasresult.sp_role_areasresultMetadata))> _
    Partial Public Class sp_role_areasresult
        Friend NotInheritable Class sp_role_areasresultMetadata
            Private Sub New()
            End Sub

            <Key()> Public Area As String
            Public AreaOrder As Integer
        End Class
    End Class

************** My stored proc called in the domain service

    Public Function Role_Areas_Select(ByVal roleid As Integer) As IList(Of SP_Role_AreasResult)
        Return Me.DataContext.SP_Role_Areas(roleid).ToList()
    End Function

Open in new window

Avatar of Vaughn Bigham
Someone had this problem and found that they were referencing the wrong version of System.ComponentModel.DataAnnotations

See this forum:
http://forums.silverlight.net/forums/p/148346/370241.aspx

That being said.  I will usually specify the primary key in the database or in the edmx model, and not use DomainService metadata (or very little).  Are either of those an option (PK in db or Model)?
After playing with this solution (way too long) I finally got it to work using the key function