namespace WinApp.EF
{
    public partial class Form1 : Form
...

C# How to I write a repository...

by ykaratoprak.blogspot.com, December 07, 2010 19:48, 3 refactorings, tagged with C#, LINQ, class object

i try to write a kind of re...

55502f40dc8b7c769880b10874abc9d0 Talk
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 .net, C#, LINQ

i want to use generic cla...

Dc2b5374b8c24a20577346b9b1e4891f Talk
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 .net, C#, LINQ

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

Dc2b5374b8c24a20577346b9b1e4891f Talk
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, Extension, LINQ

Suddenly found myself havin...

8bc7bb10bee96efb190053fe92ffd250 Talk
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#, LINQ, batch

I need to do a bunch of dat...

55502f40dc8b7c769880b10874abc9d0 Talk
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