Hello there,
I'm doing this :
IList<Customer> list = session.CreateCriteria(typeof(Customer))
.Add(Expression.Eq("Id", new Guid("11111111-1111-1111-1111-111111111111")))
.List<Customer>();
OK
this :
IList<Customer> list = s.CreateQuery("select from Customer c where c.Id= :cid")
.SetGuid("cid", new Guid("11111111-1111-1111-1111-111111111111"))
.List<Customer>();
KO
Error :
System.IO.FileNotFoundException: Could not load file or assembly
'Antlr3.Runtime, Version=3.1.0.39271, Culture=neutral,
PublicKeyToken=3a9cab8f8d22bfb7' or one of its dependencies.
The system cannot find the file specified.
Do you have an idea ?
Thanks,
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"nhusers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nhusers?hl=en
-~----------~----~----~----~------~----~------~--~---