Search Results

0
votes
2answers
529 views

MaskedEdit Extender lost data on postback

I am currently developping an web site that require DateTime entry and I am using MaskEdit extender on the TextBox used to enter the date and time. These DateTime are used as input to compute the t …
0
votes
3answers
131 views

Best practices to generate schema for production with NHibernate

I am now ready to use NHibernate to persist my data layer access. I used DDD until that point and I use fake for unit tests and for the test site. I know that I can use SchemaExport for uni …
1
vote
1answer
87 views

Implementing conditional in a fluent interface

I've been trying to implement a fluent interface for a set of rules in my system. What I am trying to accomplish is this TicketRules .RequireValidation() .When(quartType => quart …
0
votes

MaskedEdit Extender lost data on postback

Sure ASPX part: <td><asp:TextBox id="textBeginStation" runat="server"></asp:TextBox></td> <td> <asp:TextBox ID="textBeginServiceDateTi …
0
votes

What’s the best way to implement BDD/TDD in .NET 2.0?

For my project, I used NUnit and TestDrived.NET with great success. You can either create a separate library just to host your test code or you can put it in your executable or library. It all depe …
1
vote

What c# mocking framework to use?

I prefer Moq when I develop with .NET 3.5. Very nice use of the lambda expressions. Otherwise I think I'll use RhinoMocks on a .NET 2.0 on …
1
vote

C# dynamic operator

C# 4.0 will have a dynamic keyword for dynamic typing. …
0
votes

How/where do I ship third-party libraries with a .NET DLL?

You should take a look at ILMerge. I linked a blog that shows an usage of ILMerge …