vote up 0 vote down star

The MemberShipUser constructor expects dateTime fields like lastLoginDate, which may be null in the data store.

However, when I retrieve data from the store and pass null in for the parameter, I get an error that it cannot be null.

How can I work around this?

flag

49% accept rate

2 Answers

vote up 0 vote down

Update your query to return a date for nulls - maybe current date or '1900-01-01'

ISNULL(DateField, '1900-01-01') AS DateField
link|flag
vote up 0 vote down

I believe the expectation with the ASP.NET standard Membership provider is that the user has registered on your site and as a result has effectively logged in at the same time as their user record was created.

If you are bulk loading the memberships then I'd suggest setting the lastLoginDate to DateTime.Now, better than leaving it null.

link|flag
Can membership user be inherited with nullable DateTime fields for this instead? Or would such a subtle variation work? – Caveatrob Apr 22 at 15:49

Your Answer

Get an OpenID
or

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