Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:480894
More Search Options
RSS Available
Matching Posts
Re: Recommendation for SCRUM development?
You might also want to check out these tools: Team City: Continuous integration build http://www.jetbrains.com/teamcity/ Target Process: Project management, story development, reports (including burndown charts), UAT, bug tracking http://www.targetprocess.com/
Posted to
Architecture
(Forum)
by
Diamsorn
on 3/6/2009
Re: Difficulty with LINQ .Contains C#
figured it out myself because the DB columns ChapterNumber and VerseNumber are both datatypes of int C# won't implicitly convert them to String like VB does. (Which this is being refactored from VB). So to fix this I had to change (@t.b.ChapterNumber) to (Convert.ToString(@t.b.ChapterNumber)) and the same for the 2nd contains.
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
Diamsorn
on 10/23/2008
Re: Update query
take out the (vccapprovedstatus, vccapprovedby) in your update statement. You don't define the columns your updating that way since they are in your "SET" clause. cmdUpdateasplan.Connection = SqlConnection1 cmdUpdateasplan.CommandText = "UPDATE asplan SET" & _ " vccapprovedstatus = " & statusDDL.SelectedValue & _ " ,vccapprovedby = " & approvedTextBox.Text & _ "WHERE idcustomerid = " & idcustomerid cmdUpdateasplan.ExecuteNonQuery
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
Diamsorn
on 10/22/2008
Difficulty with LINQ .Contains C#
Need some help here. Code: var query = _dbBibleEngine.Bibles.Join(_dbBibleEngine.BibleBooks, b => b.BookID, bk => bk.BookID, (b, bk) => new {b, bk}).Where( @t => @t.bk.BookName == bookName && chapter.Contains(@t.b.ChapterNumber) && verse.Contains(@t.b.VerseNumber)).Select(@t => new verse { BookName = bk.BookName, Chapter = b.ChapterNumber, VerseNumber = b.VerseNumber, Verse = b.VerseText }); chapter is ICollection<string> verse is ICollection<string> where
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
Diamsorn
on 10/22/2008
Re: Duplicate name Exception in RSS Feed
Hi Vermavarinder, Your best bet would be to start a new thread (post) with a snippet of code where you are having issues. Since this issue has already been answered for the OP you may not get many views/traffic to assist you.
Posted to
XML and XmlDataSource Control
(Forum)
by
Diamsorn
on 3/20/2008
Re: LINQ - Joining Two different Data Types and sources
Very nice, I havn't tried to do that across datatables and datacontext yet. Where I tried was joining from 2 different datacontexts and was unable to get it to work.
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
Diamsorn
on 3/12/2008
Re: LINQ - Joining Two different Data Types and sources
LINQ doesn't support Joining of 2 seperate datasources at this time that I'm aware of.
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
Diamsorn
on 3/12/2008
Re: Beginning LINQ
You can also have the query return a single record by adding "Single" to your query as below. 1 ReviewDataContext db2 = new ReviewDataContext(); 2 var album = from a in db2.Albums 3 where a.AlbumID == intAlbumID 4 select new 5 { 6 CoverArt = a.AlbumCoverURL, 7 ArtistID = a.Artist.ArtistID, 8 ArtistName = a.Artist.ArtistName, 9 ArtistWeb = a.Artist.WebURL, 10 AlbumTitle = a.Title, 11 ReleaseDate = a.ReleaseDate, 12 RLabel = a.RecordLabel.LabelName, 13 RLabelWeb = a.RecordLabel.WebsiteURL
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
Diamsorn
on 3/12/2008
Re: Linq to SQL question: Store Procedure returns xml?
add the stored procedure to your datacontect (DBML) and a function will be created. You can then access it as Dim db As New myDataContext Dim query = FROM foo in DB.TestQueryXML SELECT xmlField
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
Diamsorn
on 3/11/2008
Re: Linq query question
do you have AccessID set up as an identity field or any other constraints?
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
Diamsorn
on 3/7/2008
Page 1 of 39 (383 items) 1
2
3
4
5
Next >
...
Last »
Channel 9:
Ping 42: Is Microsoft cool? Photo DNA, Win7 tool, 10k MIX contest
Channel 9:
Jafar Husain: Silverlight Toolkit and Rx, Part 1
Channel 9:
Francesco Logozzo - Static Checking with Code Contracts for .NET
Channel 9:
Channel 9 Live at PDC09: Doug McCuistion, NASA
TechNet Edge:
System Center Operations Manager 2007 R2 – Service Level Dashboard part 3: Configuration
Channel 9:
Reading Debate with Bill Buxton
Channel 10:
Reading Debate with Bill Buxton
WindowsClient:
Build WPF Data Controls for Outlook Addins Easily with VS2010
Channel 9:
Channel 9 Live at PDC09: .Net Rocks Part 2
Channel 9:
Channel 9 Live at PDC09: .Net Rocks Part 1
Channel 9:
Channel 9 Live at PDC09: Wei Zhu (Facebook)
WindowsClient:
WPF Manipulation Basics
ASP.NET:
High CPU in .NET app using a static Generic.Dictionary
TechNet Edge:
Deploying Silverlight - Why and How
WindowsClient:
Windows Client Developer Roundup for 12/21/2009
IIS.NET:
SiteShell
Silverlight:
4 Calendars & Plans for 2010 / 5770
ASP.NET:
ASP.NET MVC 2 and Visual Studio 2010
ASP.NET:
Moving your ASP.NET Application to Windows Azure – Part II
Silverlight:
HVP – Core Scaffolding and Updated News
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online