Tagged Questions
8
votes
6answers
3k views
Lightspeed vs NHibernate
What is the experience with LightSpeed? The comparison provided by Mindscape doesn't say too much about NHibernate. Lightspeed seems flexible, but I don't see much about performance. How well does ...
2
votes
3answers
114 views
How do I save changes to a sequential list of names to sql database?
OK, here's the scenario. I think it's pretty common, and I have solved it in a prior life using a brute-force approach, but I'm thinking there has to be a better way.
Given an ordered list of names, ...
0
votes
4answers
1k views
Convert string to int for ordering using LINQ
I'd like to order my list by a string converted into an int:
var orderedListOfRfidTags = uow.RfidTags.OrderBy(t => Convert.ToInt32(t.Number)).ToList();
but get: The method 'ToInt32' is not ...
0
votes
1answer
327 views
Telerik OpenAccess OR Mindscape LightSpeed?
I am trying to decide which one to use for complex WinForm project. So any advice, any expirience is welcomed!
Which performs better ?
Which is easier to learn ?
Which one has better docs and ...
0
votes
2answers
159 views
DDD Modeling question
I have these two structures in my domain: Exercise (with subjects, solution, difficulty ext.) and Subject which has a name and a father subject. Subject is defined by its attributes so in that sense ...