Click here to Skip to main content
16,021,169 members

Comments by juwel115 (Top 4 by date)

juwel115 28-Feb-11 2:46am View    
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web;

namespace MvcApplication2.Models
{
public class Test
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Limit { get; set; }

}
public partial class TestDBContext : DbContext
{
public DbSet<test> Tests { get; set; }
}
}
Sorry i add db.Tests.Add(test) to fill it. but it throws exception.
juwel115 10-Feb-11 5:22am View    
Thanks mika. i have done it using string concatenate.
i used string concatenate because this is small portion of my
SP if this portion takes 24 second thn my SP takes 6 min.
now it takes 1.3 min
juwel115 10-Feb-11 3:51am View    
i doesnt work. Thanks for reply
juwel115 10-Feb-11 3:46am View    
i did this but it take 24 sec where as if i can put account in('1','2','3') it takes less than 2 sec