2
votes
2answers
281 views
Testing the persistence layer in a DDD/TDD application
If I have the following domain object:
public class Customer
{
public virtual Guid Id { get; set; }
public virtual string Name { get; set; }
public virtual ISet<Order …
2
votes
Reading from a socket in C#
Your best bet is probably TcpClient. There's a great sample that does exactly what you're doing right in the .NET Documentation here:
…
14
votes
NHibernate.MappingException: No persister for:
Sounds like you forgot to add a mapping assembly to the session factory configuration..
If you're using app.config...
.
.
<property name="show_sql">true</proper …
0
votes
Simple way to programmatically get all stored procedures
I think this is what you're really looking for:
select SPECIFIC_NAME,ROUTINE_DEFINITION from information_schema.routines
There are a ton of other useful columns in …
1
vote
[C#] A problem with MyThread and the Timer Control
Only the main thread can update the UI. Assuming you have your clock initialized correctly (as others have pointed out) and that "clock_Tick" is being invoked from your 2nd thread, you need to rewr …
0
votes
Communicate between two windows forms in C#
You might try AutoMapper. Keep your options in a separate class and then use AutoMapper to shuttle the data between the class and th …
1
vote
0
votes
C# - Queue and multithreading
As others have said, you'd probably be best served using MSMQ. I'd take it step further and encourage you to write your service using WCF and deploy it to IIS. It's not exactly easy, but Microsoft …
