I use c# and ef4.

I have a Model with an Entity with two proprieties int Id and string Title.

I need to write an ESQL query that is able to return bool TRUE if Id and Title are present in the DataSource. Please note Id is a PrimaryKey in my data storage.

Any idea how to do it?

Thanks

link|improve this question

sorry but is a common situation to check if an ID is present in a DataBase, lets imagine a search from EF to the DataSource for a specific recors. – GibboK Sep 24 '11 at 7:08
Please guys add a comment to your downvote – GibboK Sep 24 '11 at 7:48
feedback

2 Answers

up vote 2 down vote accepted

You can do it by each code-snippets below:


1)

using (YourEntityContext context = new YourEntityContext ()) {
    var queryString = 
        @"SELECT VALUE TOP(1) Model FROM YourEntityContext.Models 
              As Model WHERE Model.Id = @id AND Model.Title = @title";
    ObjectQuery<Model> entityQuery = new ObjectQuery<Model>(queryString, context);
    entityQuery.Parameters.Add(new ObjectParameter("id", id));
    entityQuery.Parameters.Add(new ObjectParameter("title", title));
    var result = entityQuery.Any();
}

2)

using (YourEntityContext context = new YourEntityContext ()) {
    ObjectQuery<Model> entityQuery = 
        context.Models
        .Where("it.Id = @id AND it.Title = @title"
            , new ObjectParameter("id", id)
            , new ObjectParameter("title", title)
        );
    var result = entityQuery.Any();
}

3)

var context = new YourEntityContext();
using (EntityConnection cn = context.Connection as EntityConnection) {
    if (cn.State == System.Data.ConnectionState.Closed)
        cn.Open();
    using (EntityCommand cmd = new EntityCommand()) {
        cmd.Connection = cn;
        cmd.CommandText = @"EXISTS(
                                SELECT M FROM YourEntityContext.Models as M 
                                WHERE M.Id == @id AND Model.Title = @title
                           )";
        cmd.Parameters.AddWithValue("id", _yourId);
        cmd.Parameters.AddWithValue("title", _yourTitle);
        var r = (bool)cmd.ExecuteScalar();
    }
}

4)

using (YourEntityContext context = new YourEntityContext ()) {
    var queryString = 
        @"EXISTS(
              SELECT M FROM YourEntityContext.Models as M 
              WHERE M.Id == @id AND Model.Title = @title
          )";
    ObjectQuery<bool> entityQuery = new ObjectQuery<bool>(queryString, context);
    entityQuery.Parameters.Add(new ObjectParameter("id", id));
    entityQuery.Parameters.Add(new ObjectParameter("title", title));
    var result = entityQuery.Execute(MergeOption.AppendOnly).FirstOrDefault();
}

4 is the best way I suggest you. Good lock

link|improve this answer
I need in ESQL not using LINQ thanks – GibboK Sep 24 '11 at 7:25
1  
And you vote me down?!?!?! You tagged your Q by entity-framework. when my answer is correct, how can anybody do it? JS – Javad_Amiry Sep 24 '11 at 8:38
thanks J for your message but my questions was about ESQL (sorry if one of my label was wrong), so with your edit I up-vote and accepted your answer. Please consider remove your Down Vote if you have added any to my questions. Thanks for your time. – GibboK Sep 24 '11 at 10:39
1  
OK. and I suggest you in this cases, instead of voting down the answer hurriedly, left a comment to user and wait a moment!!! You are welcome. I'll remove down-vote from your Q and put the easiest way as an update in my A. Cheers. – Javad_Amiry Sep 24 '11 at 11:29
you are right Javad I will keep in mind your advice. Thanks! – GibboK Sep 24 '11 at 12:26
feedback

What javad said is true, but another way is:

bool result = entities.Any(x=>x.Id == id && x.Title == title) ; 

In fact because Id is primary key, DB prevent from occurrence of this more than one time .

link|improve this answer
You are right! Thank you (havasam nabud :D) – Javad_Amiry Sep 24 '11 at 6:49
Sorry is it in Linq or ESQL? I need in in ESQL. – GibboK Sep 24 '11 at 7:19
1  
@GibboK, This is one of a options when you using EF (in your tags) so IMO you shouldn't downvote correct answer you should clear your question statement by removing tag or saying lin2entity is not allowed, in both case I'll downvote your answer because limiting technology usage is not good in all. – Saeed Amiri Sep 24 '11 at 7:49
1  
@GibboK, you should consider flag, because of your mistake i got downvote (from you or another downvoter i don't know), my downvote will be alive until you fix your mistakes. – Saeed Amiri Sep 24 '11 at 8:11
1  
@GibboK, it's fair. – Saeed Amiri Sep 24 '11 at 8:26
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.