asiftasleem / nbuilder

Automatically exported from code.google.com/p/nbuilder
0 stars 0 forks source link

Builder<Load>.CreateNew().With(l => l.Status == "Active").Build() doesn't work #55

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Create the statement above

What is the expected output? What do you see instead?
The Status property should be set to Active, however it is being set to Status1

What version of the product are you using? On what operating system?
2.2, but same happened on the previous version

Original issue reported on code.google.com by nzdu...@gmail.com on 4 Nov 2010 at 5:01

GoogleCodeExporter commented 8 years ago
Hi - there's a syntax error in that code, it should be:

Builder<Load>.CreateNew().With(l => l.Status = "Active").Build();

Original comment by garethdo...@googlemail.com on 5 Nov 2010 at 12:37

GoogleCodeExporter commented 8 years ago
oops - should have picked that up

Original comment by nzdu...@gmail.com on 5 Nov 2010 at 11:55