ok folks I have a oracle selfservice data layer but the entity is refusing to bring back any data its my text cotnrols are just sitting their blank. Now when i used to use the entiy factory I would have use the adpater.fill method is their something simlar i have to do here..
this is in my form load method
WebComplaintsEntity webc = new WebComplaintsEntity();
webc.Id = Convert.ToInt32(Request.QueryString["id"]);
webc.IsNew = false;
txtprogress.Text = webc.Progress;
txtdescription.Text = webc.Description;
Response.Write("Test " + webc.Progress.ToString());
txtprogress.Text = webc.Progress;
regards
david