Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Update Not Working
Message
Information générale
Forum:
ASP.NET
Catégorie:
LINQ
Divers
Thread ID:
01502033
Message ID:
01502044
Vues:
43
>>Why doesn't this work????
>>
>>
>>using (AppSecurityDataContext dc = GetDataContext())
>>{
>>    tblUsersInApplication uia = new tblUsersInApplication
>>    {
>>        UserId = um.UserId,
>>        ApplicationId = LoginCredentials.ApplicationId,
>>        LastLoginDateTime = DateTime.Now
>>    };
>>
>>    try
>>    {
>>        dc.SubmitChanges();
>>    }
>>    catch (Exception e)
>>    {
>>        Error = e;
>>    }
>>}   
>>
>>
>>I get no exceptions. Runs fine. The date/time doesn't show up in the SQL table after it runs.
>
>Is this Entity Framework? (I'm guessing it is.)
>
>You need to add the new item to the context, if it's not a child entity EF will have created a function something like this:
>
>dc.AddTotblUsersInApplication(uia);
>
>If it's a child you just add it to the reference collection on the parent entity.

No, it's just a plain old Linq statement. Not EF.

And, I have a bunch of other queries just like this one that work fine.
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform