I'm trying to create a function that takes any table from my ADO.NET Data Model in Silverlight. I can't figure out what the base class is for the Entity Objects that it creates for me. Each Entity in the model is of this type:
global::System.Data.Objects.DataClasses.EntityObject
but that type wasn't working in SilverLight.
I'd like to do something like this:
public void foo(WhatGoesHere entityObject)
{
//Use entityObject to manipulate the DB
}
So: What types of Silverlight objects are they?