4,127 reputation
536100
bio website
location
age
visits member for 3 years, 1 month
seen yesterday
stats profile views 432

Mar
31
comment How do I receive a JSON response after calling knockoutjs postJson?
Ahh ok great, thanks. I've got it working now.
Mar
31
comment How do I receive a JSON response after calling knockoutjs postJson?
I'm a bit confused, I've been using ko.toJS(this); and then use [FromJson] attribute on the server-side. How does this relate to the ajax post-back and your Json example? I'm not sure of the difference between toJS and toJSON.
Mar
31
comment How to return IList from my repository with ordered queries in LINQ/EF
I tried putting everything back to IList so code-first registers the relationships. I get the error "The entity or complex type 'CodeFirstNamespace.<theClass>' cannot be constructed in a LINQ to Entities query. I think this is because I am trying to project into a concrete data-model class. Can I not still return my entity with it's child list sorted?
Mar
30
asked How do I receive a JSON response after calling knockoutjs postJson?
Mar
30
comment How to return IList from my repository with ordered queries in LINQ/EF
Thanks I will try that but I'm sure that this didn't work for me.
Mar
30
accepted CruiseControl.NET force build not working from CCTray
Mar
30
answered what is this bullet point <li> not showing up with circles?
Mar
30
comment OnModelCreating setting up cascade delete with HasMany causing problems
Here is my new question: stackoverflow.com/questions/5488747/… This question is really a side-effect/sub problem of a wider problem which is my link here.
Mar
30
asked How to return IList from my repository with ordered queries in LINQ/EF
Mar
30
comment OnModelCreating setting up cascade delete with HasMany causing problems
My problem occurred only when within my repository I needed to OrderBy() to sort. I always return IList from the repo class, but try and use OrderBy and IList and you will run into difficulty. myQuery.ToList() cannot work as the query wants to return an IOrderedEnumerable. That is my big problem.
Mar
30
comment OnModelCreating setting up cascade delete with HasMany causing problems
Hi, does this mean that when defining my code-first entity model the relationships can be defined with IList or ICollection? I'm having real problems using IList because the repository cannot convert the result of a LINQ orderby expression back to an IList and I guess the same with ICollection?
Mar
30
asked OnModelCreating setting up cascade delete with HasMany causing problems
Mar
30
comment How do I append a new row in a list by adding to the item of the previous row in KnockoutJs
Perfect! Its working now like a treat. Thanks for your help, greatly appreciated.
Mar
30
accepted How do I append a new row in a list by adding to the item of the previous row in KnockoutJs
Mar
30
comment How do I append a new row in a list by adding to the item of the previous row in KnockoutJs
Thats great, the only problem is my button is in the footer of the table not each row and not in the template. I don't know how to bind the data from the last row into the footer so I can +1. Any ideas? Do I bind a footer template, or try to index into the data?
Mar
30
comment How do I order an underlying child collection of a parent class in LINQ lambda
Hi, I'm having big problems with you example solution. 1) I need to return a non-anonymous type out of my repository. 2) The underlying collection is of type IList and so seems to barf when converting from IOrderedEnumerable. Struggling with this...
Mar
30
asked How do I append a new row in a list by adding to the item of the previous row in KnockoutJs
Mar
30
asked How do I order an underlying child collection of a parent class in LINQ lambda
Mar
29
accepted How do you ensure Cascade Delete is enabled on a table relationship in EF Code first?
Mar
29
comment How do you ensure Cascade Delete is enabled on a table relationship in EF Code first?
Does this mean that if you don't specify the convention, WillCascadeOnDelete() is off by default?