Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
H

Hailu Worku Obsse

@Hailu Worku Obsse
About
Posts
9
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • 'Date syntax error in query expression'
    H Hailu Worku Obsse

    The error is with in the query string. Between keyword does not work well with string datatype.

    LINQ database help question

  • Vehicle routing problem for large graph
    H Hailu Worku Obsse

    I have tried similar problem using Genetic Algorithm and the results were astonishing. I think trying Genetic Algorithm may be wonderful for you too in speeding the search time.

    Algorithms data-structures css graphics agentic-ai help

  • how can write linq insert ,update,delete queries
    H Hailu Worku Obsse

    To Insert new record: bool InsertNewProduct(Product p) { myDataContext dt= new myDataContext(); dt.Products.InsertOnSubmit(p); dt.SubmitCHanges(); return true; } To Insert new record: bool DeleteProduct(Product p) { myDataContext dt= new myDataContext(); dt.Products.DeleteOnSubmit(p); dt.SubmitCHanges(); return true }

    LINQ csharp linq announcement

  • How to get a distinct records with multiple columns using linq
    H Hailu Worku Obsse

    You simply add first to the end of the Select logic listViewModel.EmailRecipients.AddRange( from r join p on r.PId equals p.PId join gp on p.PId equals gp.PId join hp on gp.HPId equals hp.HPId orderby p.LastName, p.FirstName select(new EmailRecipientViewModel { PId = p.PId, FirstName = p.FirstName, LastName = p.LastName, Email = "", }) ).First();

    LINQ question csharp linq tutorial

  • how to get last row value in the datable
    H Hailu Worku Obsse

    Try the following approach: public Product GetLastProduct(DataContext dt) { return dt.Products.Last(); } this code assumes two things: 1. your database has a Product table 2. You have created LINQ to SQL and you have dragged and Dropped the Product table on to the DataContext named dt

    LINQ csharp database help tutorial learning

  • Case Based Reasoning
    H Hailu Worku Obsse

    As to me you can try A genetic algorithm, that exploits the K-means principles for dividing objects in groups having high similarity. Those that lie with in the first, second or so would be selected as best alternatives for your search to fit to the case on hand.

    C# database agentic-ai help question

  • how to check if value exists in database from textbox c#
    H Hailu Worku Obsse

    Step one: Add new LINQ to SQL item from project Item in to your project and call it DXD (or any convinient name you like) Step two: drag and Drop the Employee TABLE from Server Explorer in your IDE to your LINQ to SQL DataContext object. Step Three: Add data source by selecting Object as data source Step Four: Go to your form and drag and drop Salary field from your data source object to your form Step Five: Set the Data Source of your EmployeeDatabinding object as EmployeeDatabinding.DataSource = DXD.Employee ... it is too long try another approach

    C# csharp database tutorial

  • single DataSet having multiple DataTables from multiple databases
    H Hailu Worku Obsse

    Thank you for your replay .... however, I am looking different databases from the same provider

    Database question

  • single DataSet having multiple DataTables from multiple databases
    H Hailu Worku Obsse

    It is possible to have a single DataSet having multiple DataTables from multiple databases. If so can you just tell me how ?

    Database question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups