Tagged Questions
0
votes
0answers
204 views
Linq Data Context - connect from web part as application pool identity
I have an assembly with linq to sql mappings and I'd like to utilize it in my webpart. But when I try following:
DataList dataList = new DataList();
dataList.DataSource = DB.Foo;
...