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
public class EngGetCalculatedTaskField
{
private static TaskMaintenanceDataDataContext engTaskCtx { get; set; }
...
C# How can i use generic class...
i want to use generic cla...
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. ...
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...
public void ChangeCommuteItems(int startAtRecord)
{
using (DataContext context = new DataContext())
...
C# Improve Batch Processing fo...
I need to do a bunch of dat...
public static void Capitalize()
{
TextInfo oTextInfo = CultureInfo.CurrentCulture.TextInfo;
...
C# Capitalize directory name w...
I wrote a method to capital...
i try to write a kind of re...