Top ".net-3.5" questions

The 3.5 version of the .NET Framework, which is based on the 2.0 .NET Framework with extra assemblies (including 3.0). Use for questions specifically related to .NET Framework 3.0. For questions on .NET Framework generally, use the .net tag.

Conditional Linq Queries

We're working on a Log Viewer. The use will have the option to filter by user, severity, etc. In the …

c# linq linq-to-sql .net-3.5
See if user is part of Active Directory group in C# + Asp.net

I need a way to see if a user is part of an active directory group from my .Net 3.5 asp.…

c# asp.net active-directory .net-3.5 active-directory-group
Filling a DataSet or DataTable from a LINQ query result set

How do you expose a LINQ query as an ASMX web service? Usually, from the business tier, I can return …

c# linq web-services .net-3.5
Where is ConfigurationManager's namespace?

I've got a reference to System.Configuration - and ConfigurationSettings is found no problem - but the type or namespace …

c# .net-3.5 reference configurationmanager system.configuration
Wait until file is unlocked in .NET

What's the simplest way of blocking a thread until a file has been unlocked and is accessible for reading and …

.net .net-3.5 file
'Contains()' workaround using Linq to Entities?

I'm trying to create a query which uses a list of ids in the where clause, using the Silverlight ADO.…

c# linq entity-framework .net-3.5 linq-to-entities
Using LINQ to convert List<U> to List<T>

I have 2 classes which have some identical properties. I stock into a list properties from 1st class, and after that, …

c# linq list .net-3.5 casting
What is the best OAuth2 C# library?

It seems like many app providers are using OAuth2 to allow API access, such as Twitter and Facebook. Does anyone …

c# .net asp.net .net-3.5 oauth
LINQ - Find all items in one list that aren't in another list

I'm stuck with a LINQ query (or any other efficient means of accomplishing the same thing). Can someone show me …

c# .net linq .net-3.5
Named string formatting in C#

Is there any way to format a string by name rather than position in C#? In python, I can do …

c# .net-3.5 string-formatting