Tagged Questions
0
votes
0answers
163 views
SPMetal insert item with lookup column throwing exception stating that there is a field that is read only
I have the following code
protected void BetOnCar_Click(object sender, EventArgs e)
{
DerbyDataContext context = new DerbyDataContext(SPContext.Current.Web.Url);
int carId = ...
0
votes
2answers
283 views
SPMetal getting picture thumbnail url
I am making a custom web part and need to be able to pull a picture thumbnail from a picture library. I am using SPMetal generated classes and don't see a way to do this.
It seems that thumbnails ...
1
vote
0answers
136 views
Generating Entity List property for “Reusable Content” list
I am attempting to generate an entity class for "Reusable Content" list. After running the CKSDEV tool, i see that DataContext object has the following
/// <summary>
/// Items in this list ...
2
votes
0answers
177 views
Resource throttling and LINQ / spmetal
Today I received an e-mail from a customer telling me their site broke. I checked the ULS and noticed resource throttling had kicked in on one of the sites. I'm used to this when using ...
2
votes
3answers
1k views
Getting “Access denied” error message when trying to access a SharePoint list via Linq from an Web Service
I have following scenario.
A web service hosted on IIS 7 should take messages from a MSMQ, transform them and put them into a custom SharePoint list.
The list, contenttype and columns were defined ...