1 2 3 4
public class EngGetCalculatedTaskField { private static TaskMaintenanceDataDataContext engTaskCtx { get; set; } ...
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...
hi; i try to run my codes. ...
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...
Suddenly found myself havin...
1 2 3 4
public void ChangeCommuteItems(int startAtRecord) { using (DataContext context = new DataContext()) ...
C# Improve Batch Processing fo...
I need to do a bunch of dat...
1 2 3 4
public static void Capitalize() { TextInfo oTextInfo = CultureInfo.CurrentCulture.TextInfo; ...
C# Capitalize directory name w...
I wrote a method to capital...
i want to use generic cla...