Day to day good stuff I find regarding my work
Friday, December 25, 2009
Tuesday, December 22, 2009
Wednesday, December 16, 2009
Linq sorting
I use LINQ -SQL and returns a List that needs to have a customized sorting
Example
List data = FindShareOfGrowth(lstCountries, new DateTime(2009,10,5))
this needs to have a customized sorting
like
data.ChartSort()
Example
List data = FindShareOfGrowth(lstCountries, new DateTime(2009,10,5))
this needs to have a customized sorting
like
data.ChartSort()
public ListFindShareOfGrowth(List lstCountry, DateTime minDate)
{
var db = new ValueUpDBDataContext();
var queryNN = FindAllNNHelper(db, lstCountry, minDate);
var queryAll = FindAllMinMaxNNHelper(db, chartNr, lstCountry, minDate);
queryAll.ToList();
var query = from nn in queryNN
join all in queryAll on new { K1 = nn.DateRange, K2 = nn.Name }
equals new { K1 = all.DateRange, K2 = all.Name }
select new ChartData
{
Name = nn.Name,
DateRange = nn.DateRange,
Value = nn.Value / all.ValueAbs,
Volume = nn.Volume / all.VolumeAbs
};
return query.OrderBy(c => c.DateRange).ThenBy(c => c.Name).ToList();
}
Tuesday, November 24, 2009
Friday, November 13, 2009
SSIS prestanda Projekt 1
Följande resultat fick vid körning av Projekt 1 Uppgift 1
Jag har användt BIDS Helper som finns på CodePlex och funktionen SSIS Performance Visualization
Jag har användt BIDS Helper som finns på CodePlex och funktionen SSIS Performance Visualization
Sunday, October 18, 2009
Monday, September 21, 2009
Sunday, September 13, 2009
Friday, September 04, 2009
Thursday, September 03, 2009
Sunday, May 10, 2009
Friday, May 01, 2009
Thursday, January 29, 2009
Monday, January 26, 2009
SharePoint and SQL Server Reporting Services - Installation and Setup | Sahil Malik - blah.winsmarts.com
SharePoint and SQL Server Reporting Services - Installation and Setup | Sahil Malik - blah.winsmarts.com
Report Server How-to Topics (SharePoint Integrated Mode)
CodeProject: SQL Reporting Services data from SharePoint lists. Free source code and programming help
Accessing SharePoint List Items with SQL Server 2005 Reporting Services - Colin Bowern - RockstarGuys.com
Accessing SharePoint List Items with SQL Server 2005 Reporting Services - Colin Bowern - RockstarGuys.com
Report Server How-to Topics (SharePoint Integrated Mode)
CodeProject: SQL Reporting Services data from SharePoint lists. Free source code and programming help
Accessing SharePoint List Items with SQL Server 2005 Reporting Services - Colin Bowern - RockstarGuys.com
Accessing SharePoint List Items with SQL Server 2005 Reporting Services - Colin Bowern - RockstarGuys.com
Subscribe to:
Posts (Atom)
Links
Labels
- "Sharepoint" TypeMock "Isolator For SharePoint" (1)
- ASP.NET (1)
- SharePoint (1)
- WSS (1)