1
vote
What is the best .Net library to handle feeds (Atom+RSS)
You might find useful Atom.Net and FeedDotNet, both open source.
…
1
vote
2
votes
How do I set the login info for SQL Server 2008 in Entity Framework?
Check this out:
Security Considerations (Entity Framework)
…
10
votes
Can you mix .net languages within a single project?
You can mix languages in a single assembly with ILMerge …
2
votes
Linq to SQL - Can you submit changes for a single object?
Here is a good article about how to manage the lifetime of the Linq to SQL DataContext, might help you...
…
2
votes
What’s the best way to learn .NET?
I can recommend you a book, C# for Java Developers, it can help you to get started, this book explains very well the …
7
votes
Microsoft alternative to Jabber?
I really like Jabber, for jumpstart, I would recommend you to see this list of Jabber Server software which you can use to run your ow …
2
votes
0
votes
Best way to connect to Interbase 7.1 using .NET C#
Check this providers:
Interbase and Firebird Developer's for Visual Studio .N …
3
votes
4
votes
4
votes
4
votes
Why is a left parenthesis being escaped in this Regex?
Your IsMatch Method is using the option RegexOptions.IgnorePatternWhitespace, that allows you to put comments inside the regular expressions, so you have to scape the # chatacter, othe …
21
votes
Best ASP.NET MVC book?
This will be a very good one:
Scheduled for March 2009, you can see a sample chapter …
2
votes
Getting key of value of a generic Dictionary?
Maybe the easiest way to do it, without Linq, can be to loop over the pairs:
int betaKey;
foreach (KeyValuePair<int, string> pair in lookup)
{
if (pair.Value == value)
…
