Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I keep getting this error message

   at System.Data.SqlClient.SqlBuffer.get_Single()
at Read_ProjectUpdProj(ObjectMaterializer`1 )
at System.Data.Linq.SqlClient.ObjectReaderCompiler.ObjectReader`2.MoveNext()
at LocalTest.Program.getAllUserTimes() in ...\Program.cs:line 24
at LocalTest.Program.Main(String[] args) in ...\Program.cs:line 18

I am using Linq to sql and have tried various workarounds but I simply cannot fix it, I have never stumbled upon this error before so it's hard for me to figure out. The ProjUpdProj class just contains two members, a projectupdate class and a project class This is a snippet from Program.cs

private static void getAllUserTimes()
    {
        IEnumerable<ProjectUpdProj> l =
                           ProjectUpdateMethods.getTimesByProjectAndUser(21, 19);
        l.ToString();
        foreach ( ProjectUpdProj p in l)
        {
        Console.WriteLine("");
        }
    }

Line 18 is just where this method is called, and the Writeline Method DOES have some content, i just removed it to reduce the length of the codewindow

This is from the ProjectUpdateMethods

public static IEnumerable<ProjectUpdProj>
getTimesByProjectAndUser(Int32 ProjId, Int32 UId)
    {
        DataContext db = DBCommands.getConnection();
        IEnumerable<ProjectUpdProj> list = from l in db.GetTable<ProjectUpdate>()
                                           join p in db.GetTable<Project>()
                                               on l.ProjectID equals p.ID
                                           where p.Status == 0
                                           select new ProjectUpdProj(p,l);
        //Debugging told me that the error already occurs here but is not reported
        //to the application before it is used, just like nullpoint exception
        //isn't thrown before the program tries to use it expecting it's not null
        return list;
    }

This is the ProjectUpdate class

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Linq.Mapping;

namespace BE
{
[Table(Name="ProjectTime")]
public class ProjectUpdate
{
    private Int32 id;
    [Column(Name="Id",IsPrimaryKey=true,IsDbGenerated=true)]
    public Int32 ID
    {
        get
        {
            return id;
        }
        private set
        {
            id = value;
        }
    }
    [Column]
    public Int32 ProjectID { get; set; }
    [Column(CanBeNull = true)]
    public Int32 TagId { get; set; }
    [Column(CanBeNull=true)]
    public string Description { get; set; }
    [Column]
    public Decimal UnitPrice { get; set; }
    [Column]
    public float TimeSpent { get; set; }
    [Column]
    public Int32 ToBePaid { get; set; }
    [Column]
    public Int32 Status { get; set; }
    [Column]
    public DateTime LastUpdate { get; set; }
    [Column(CanBeNull = true)]
    public Int32 CreatedBy { get; set; }
    [Column]
    public Int32 ProductID { get; set; }

    public ProjectUpdate(Int32 PID, Int32 PProjectID,
Int32 PTagId, string
PDescription, Decimal PunitPrice,
float PTimeSpent, Int32 PToBePaid, Int32 PStatus,
DateTime PLastUpdate, Int32 PCreateBy,Int32 PProductID)
    {
        ID = PID;
        ProjectID = PProjectID;
        TagId = PTagId;
        Description = PDescription;
        UnitPrice = PunitPrice;
        TimeSpent = PTimeSpent;
        ToBePaid = PToBePaid;
        Status = PStatus;
        LastUpdate = PLastUpdate;
        CreatedBy = PCreateBy;
        ProductID = PProductID;
    }
    public ProjectUpdate( Int32 PProjectID, Int32 PTagId, 
string PDescription,
Decimal PunitPrice, float PTimeSpent, Int32 PToBePaid, 
Int32 PStatus, DateTime
PLastUpdate, Int32 PCreateBy, Int32 PProductID)
    {

        ProjectID = PProjectID;
        TagId = PTagId;
        Description = PDescription;
        UnitPrice = PunitPrice;
        TimeSpent = PTimeSpent;
        ToBePaid = PToBePaid;
        Status = PStatus;
        LastUpdate = PLastUpdate;
        CreatedBy = PCreateBy;
        ProductID = PProductID;
    }

    public ProjectUpdate()
    {

    }
}
}

and this is the Project Class

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Linq.Mapping;

namespace BE
{
[Table(Name="Project")]
public class Project
{
    private int id;
    [Column(Name = "Id", IsPrimaryKey = true, IsDbGenerated = true)]
    public int ID
    {
        get
        {
            return id;
        }
        private set
        {
            id = value;
        }
    }
    [Column]
   public int CustomerID { get; set; }
    [Column]
   public string Name { get; set; }
    [Column]
   public DateTime Created { get; set; }
    [Column]
   public Byte Status { get; set; }

    public Project(int PID, int PCustomerID, String PName,
DateTime PCreated,  Byte PStatus)
    {
        ID=PID;
        CustomerID=PCustomerID;
        Name=PName;
        Created=PCreated;
        Status=PStatus;
    }

    public Project()
    {

    }
}
}

I understand that it has something to do with sql types maybe not matching the type in the code. here are the two tables So here's the sql script for creating these 2 empty tables

/****** Object:  Table [dbo].[ProjectTime]
Script Date: 08/24/2012 10:44:14 ******/
SET ANSI_NULLS ON
GO
    SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[ProjectTime](
    [Id] [int] IDENTITY(1,1) NOT NULL,
    [ProjectID] [int] NOT NULL,
    [TagId] [int] NULL,
    [Description] [nvarchar](max) NULL,
    [UnitPrice] [money] NOT NULL,
    [TimeSpent] [float] NOT NULL,
    [ToBePaid] [int] NOT NULL,
    [Status] [int] NOT NULL,
    [LastUpdate] [datetime] NOT NULL,
    [ProductID] [int] NOT NULL,
    [CreatedBy] [nchar](10) NULL,
 CONSTRAINT [PK_ProjectTime] PRIMARY KEY CLUSTERED 
(
    [Id] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object:  Table [dbo].[Project]
Script Date: 08/24/2012 10:44:14 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Project](
    [Id] [int] IDENTITY(1,1) NOT NULL,
    [CustomerId] [int] NOT NULL,
    [Name] [nvarchar](140) NOT NULL,
    [Created] [datetime] NULL,
    [Status] [tinyint] NOT NULL,
 CONSTRAINT [PK_Project] PRIMARY KEY CLUSTERED 
(
    [Id] ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]

I just can't figure it out and is currently banging my head through the wall

edit: I am currently trying to minimize the possibilities of failure by returning anonymous types with various variables from the ProjectUpdate class, I tried giving back the whole project class so I know it's not the cause since it returns it successfully

edit 2: The money property in ProjectUpdate(ProjectTime in the database) is the bugger causing me trouble

edit3: Decimal was right for money, timespent as a float doesn't work with the decimal though

I fixed the problem, in the ProjectUpdate class I changed the TimeSpent property to [Column(DbType = "float NOT NULL")] public Decimal TimeSpent { get; set; }

the (dbtype) is new, now it knows that it's a float incoming and can properly map it

share|improve this question
Figured out where the problem was, edited it into title and description body – Anders M. Aug 24 '12 at 10:17
can somebody set the answer to be the initial question? – Anders M. Sep 6 '12 at 9:44

closed as too localized by casperOne Aug 24 '12 at 16:35

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.