I get data where the database is hidden behind the WCF service. Can I use the Entity Framework in a scenario where I have custom objects coming from a web service? (No access to external database and no current plans for insert / update / delete logic)
Starting with an empty EF model and adding an object, I get this error when compiling: There is no mapping specified for EntitySet and AssociationSet instances in EntityContainer ..
Is it possible to make an object in this way and fill it with data received from the object? (In this case, WCF, but may also be predefined model class / xml data)
If the web service deleted the Customer object, I could do something like this using a dataset: Create an unrelated table and loop through the client properties, adding them to the temp line, add it with tbl_Customer.Addtbl_CustomerRow (customerRow) to get my view.
thanks nakori
source share