1
2
3
4
 public  class EngGetCalculatedTaskField
    {
        private static TaskMaintenanceDataDataContext engTaskCtx { get; set; }
...

C# How can i use generic class...

by programmerist, August 11, 2010 13:30, 4 refactorings, tagged with C#, LINQ, .net

i want to use generic cla...

Dc2b5374b8c24a20577346b9b1e4891f Talk
1
2
3
4
   public void LoadById(string SearchItem)
        {
            var myTechnicTasks = engTaskCtx.Tasks.Where(task => task.MyTechnicReference.StartsWith(SearchItem)).Select(task => new MyTask()
...

C# How can i shorter my linq c...

by programmerist, August 11, 2010 08:22, 3 refactorings, tagged with C#, LINQ, .net

hi; i try to run my codes. ...

Dc2b5374b8c24a20577346b9b1e4891f Talk
1
2
3
4
        public static Func<TDbTable, bool> GetWhereClauseForAll<TDbTable, TEntity>(
            this List<TEntity> objects,
            Func<TEntity, Func<TDbTable, bool>> comparison)
...

C# Generic Linq where clause O...

by Torbjørn, November 12, 2009 11:43, 1 refactoring, tagged with generics, LINQ, Extension

Suddenly found myself havin...

8bc7bb10bee96efb190053fe92ffd250 Talk
1
2
3
4
 public void ChangeCommuteItems(int startAtRecord)
        {
            using (DataContext context = new DataContext())
...

C# Improve Batch Processing fo...

by thekevdog.myopenid.com, August 27, 2009 13:58, 1 refactoring, tagged with C#, batch, LINQ

I need to do a bunch of dat...

Avatar Talk
1
2
3
4
public static void Capitalize()
{
    TextInfo oTextInfo = CultureInfo.CurrentCulture.TextInfo;
...

C# Capitalize directory name w...

by Moonshield, October 02, 2008 01:31, No refactoring, tagged with C#, LINQ, Capitalize, Directory

I wrote a method to capital...

72f36daa501cf8f5bb861210edd9232d Talk