Tagged Questions
0
votes
1answer
351 views
Is it possible in LINQ to SharePoint
I have a task to make a WSP, which should provide definitions of custom list and library, but not instances. List definition has a lookup column to library item
<Field ...
5
votes
3answers
542 views
sharepoint caml is fast - how?
We all know that Caml is faster than using linq, since linq internally gets translated to caml.
But can anyone explain how caml is best to do sharepoint queries or how it is fast or what makes it ...
2
votes
0answers
285 views
Reverse lookup with Linq to SharePoint
I have two lists called ‘Events’ (custom list) and ‘Timeslots’ (calendar list), Timeslots has a lookup in to the id column of Events. Each event can have multiple timeslots.
I need to show columns ...
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 ...
0
votes
2answers
82 views
How to use values from 2 item collections?
I'm trying to use values from 2 SPListItemCollections, as one of them have a lookup field with values from the other list.
The reason why I need to do this, is because I need the value from the other ...
1
vote
1answer
96 views
What is the best way to access sharepoint lists?
In the past I tried with linq using spmetal, but after the project was almost finished I realized of some limitations, this tool does not generate fields for creation date, modified date, also it ...
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 ...
1
vote
0answers
947 views
Inserting new item in list with EntityRef field to User Information List using Linq to SharePoint
I have a list with SPFieldUser field type in it. I try to insert new item in this list using Linq 2 SP.
So, I generated data context class using the following configuration file:
<List Name="User ...
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 ...