c# - OData.Simple.Client Linking "Attempt to access the method failed." -


i trying link entries using odata.simple.client

    public async task addgenresasnyc(int userid, list<genre> genres)     {         await client.for<user>.key(userid).linkentryasync(x => x.genres, genres);     } 

this method using in order it. when run it throws exception

"attempt access method failed."

anyone have idea?


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -