up vote 9 down vote favorite
1
share [g+] share [fb]

I have this code:

using DC = MV6DataContext;
using MV6; // Business Logic Layer
// ...

public DC.MV6DataContext dc = new DC.MV6DataContext(ConnectionString);
IP ip = new IP(Request.UserHostAddress);
dc.IPs.InsertOnSubmit(ip);
dc.SubmitChanges();

// in Business Logic layer:
public class IP : DC.IP {
  public IP(string address) { ... }
}

Upon attempting to InsertOnSubmit(ip), I get a NullReferenceException (Object reference not set to an instance of an object). dc is not null; ip and all properties of ip are not null; though some are empty.

VS2008 won't let me step into InsertOnSubmit, so I have no way of knowing what specifically is null when being evaluated. What gives?

Note: I have checked, and all Linq.EntitySets created by FK relationships are present and non-null.

link|improve this question

feedback

5 Answers

Actually it's better to add a call to your constructor that also calls the generic constructor such as:

public IP(string address) : this() {
...
}
link|improve this answer
feedback
up vote 4 down vote accepted

Got it.

Rather than creating a class that inherits from the DataContext's class, I extend the DC class itself with a partial class in the Business Logic layer. From there I can add whatever constructors and methods I wish.

In this case, it is neccessary to copy the code from the existing (auto-generated) constructor:

public IP(string address) {
Address = address;
Domain = "";
Notes = "";
FirstAccess = DateTime.Now;
LastAccess = DateTime.Now;
this._Sessions = new EntitySet<Session>(new Action<Session>(this.attach_Sessions), new Action<Session>(this.detach_Sessions));
OnCreated(); }

Not sure what's in that OnCreated handler, but it seems to be doing the work that boned me earlier. Works fine now :)

link|improve this answer
thx :D LINQ boned me the same way ;) – SpoBo Jun 10 '09 at 8:04
4  
I think that calling the auto-genrated constructor (using :this()) is better than copy-pasting it. – svick Sep 28 '09 at 1:32
thkx for you answer. Still unclear that why we have to extend the DataContext class with partial Class. I tried doing this way, public class IP : DC.IP { public IP() : base() { ... } } what is incorrect here? – mehul9595 Dec 20 '11 at 7:19
I figured this out. Inheriting of class from an DataContext Entity class is not supported by Linq To Sql. This link details it out connect.microsoft.com/VisualStudio/feedback/details/310798/… – mehul9595 Dec 22 '11 at 7:27
feedback

Since the default constructor already initializes base(), this._Sessions and runs the OnCreated method, all you need to do in your extended constructor is this:

public IP(string address) : this()
{
    Address = address;
    Domain = "";
    Notes = "";
    FirstAccess = DateTime.Now;
    LastAccess = DateTime.Now;
}
link|improve this answer
Ah, Touché. – tsilb Feb 10 '09 at 20:27
feedback

You can try to see what's happening, what changes will be done, if you place a breakpoint just before SubmitChanges, and do a quick watch of dc.GetChangeSet().

link|improve this answer
OK; it never gets to that line because the exception is thrown on InsertOnSubmit. – tsilb Jan 31 '09 at 20:11
That wasn't the solution, but +1 for providing something useful I hadn't known. – tsilb Jan 31 '09 at 21:29
feedback

Is this a designer generated DataContext or your own hand-built one. I suspicious that the IPs table may not be instantiated at the time you try your InsertOnSubmit(). I can't see how this would happen with a designer-generated DataContext, but I've been known to forget to initialize my collections from time to time in my own code.

link|improve this answer
Nope, I created a DataContext, dragged & droped the tables over from the Data Connections, and went through the constructor... umm, construction. SELECTs all work just fine. – tsilb Jan 31 '09 at 20:40
That wasn't the solution, but +1 as it steered me in the general direction that provided the solution. – tsilb Jan 31 '09 at 21:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.