active questions tagged linq-to-entities - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:27:27Zhttp://stackoverflow.com/feeds/tag/linq-to-entitieshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821165/asp-net-mvc-and-linq-to-entities-how-to-test-model-custom-binding0asp.net mvc and linq to entities: how to test model custom binding?chris2009-11-30T17:25:09Z2009-11-30T17:25:09Z
<p>I'm trying to build a test for my custom model binder, but not having any success. The call to base.BindModel always returns a null. Is there a way to test custom binding when using LINQ to Entities? foo in this case is a table in the db with two fields - a numeric and a text value.</p>
<p>fooBinder.cs:</p>
<pre><code>public override Object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var obj = (foo)base.BindModel(controllerContext, bindingContext);
return obj;
}
</code></pre>
<p>I'm trying to do a simple test (there's some extra debris in here, I've tried a number of different approaches):</p>
<p>fooBinderTest.cs:</p>
<pre><code>fooBinder binder;
ControllerContext controllerContext;
ModelBindingContext bindingContext;
[TestInitialize]
public void Initialize()
{
controllerContext = MockControllerContext().Object;
FormCollection form = new FormCollection
{
{"foo_A","2" },
{"foo_B", "FooB" }
};
var valueProvider = form.ToValueProvider();
bindingContext = new ModelBindingContext()
{
ModelState = new ModelStateDictionary(),
ModelType = typeof(foo),
ModelName = "foo",
ValueProvider = valueProvider
};
binder = new fooBinder();
}
public static Mock<ControllerContext> MockControllerContext()
{
var context = new Mock<ControllerContext>();
var sessionState = new Mock<HttpSessionStateBase>();
var response = new Mock<HttpResponseBase>();
var request = new Mock<HttpRequestBase>();
var serverUtility = new Mock<HttpServerUtilityBase>();
var form = new FormCollection
{
{"foo_A","2" },
{"foo_B", "FooB" }
};
context.Setup(c => c.HttpContext.Session).Returns(sessionState.Object);
context.Setup(c => c.HttpContext.Response).Returns(response.Object);
context.Setup(c => c.HttpContext.Request).Returns(request.Object);
context.Setup(c => c.HttpContext.Server).Returns(serverUtility.Object);
context.Setup(c => c.HttpContext.User.Identity.Name).Returns("Test");
context.Setup(c => c.HttpContext.Request.Form).Returns(form);
return context;
}
[TestMethod]
public void TestDefault()
{
foo myFoo = (foo)binder.BindModel(controllerContext, bindingContext);
Assert.IsNotNull(myFoo);
}
</code></pre>
http://stackoverflow.com/questions/1820581/extension-methods-in-linq-to-entity-expressions1Extension Methods in Linq to entity-expressionsFreddy2009-11-30T15:44:24Z2009-11-30T15:55:22Z
<p>Hi,</p>
<p>If I create an extension method for my entity objects and try to use it in a LINQ-expression I get an error. Is this a limitation and something I cant do or am I missing something?</p>
<p>regards
Freddy</p>
http://stackoverflow.com/questions/1816403/need-help-with-designing-a-query-in-elinq0Need help with designing a query in ELinqShimmy2009-11-29T18:55:17Z2009-11-29T19:05:20Z
<p>This is my query:</p>
<pre><code>Dim vendorId = 1, categoryId = 1
Dim styles = From style In My.Context.Styles.Include("Vendor") _
Where style.Vendor.VendorId = vendorId _
AndAlso (From si In style.StyleItems _
Where si.Item.Group.Category.CategoryId = _
categoryId).Count > 0 _
Distinct
</code></pre>
<p>I have the feeling that I can improve the performance, cuz the above query is (correct me if I am wrong) performs 2 round-trips to the server; 1 time by the Count and then when it's executed.</p>
<p>I want to send this Count thing to the DB so it should be only one round trip to the server.</p>
<p>Even it's not the exact thing, this is actually what I need:</p>
<pre><code>SELECT DISTINCT Style.*
FROM Style INNER JOIN
Vendor ON Style.VendorId = Vendor.VendorId INNER JOIN
StyleItem ON Style.StyleId = StyleItem.StyleId INNER JOIN
Item ON StyleItem.ItemId = Item.ItemId INNER JOIN
[Group] ON Item.GroupId = [Group].GroupId INNER JOIN
Category ON [Group].CategoryId = Category.CategoryId
WHERE (Style.VendorId = @vendorid) AND (Category.CategoryId = @CategoryId)
</code></pre>
<p><strong>I wish I could use this SPROC (i.e. function import etc.), but I need to <code>Include("Vendor")</code>, which constraints me to do it with Linq.</strong></p>
<p>Any kind of suggestion will be really welcommed!</p>
http://stackoverflow.com/questions/1800077/multi-database-transactional-system-asp-net-mvc2Multi-Database Transactional System & ASP.NET MVCKyle Hodgson2009-11-25T21:27:16Z2009-11-29T16:45:46Z
<p>So I have a challenge to build a site that people online can use to interact with organizations.: <a href="http://stackoverflow.com/questions/1691058/asp-net-mvc-customer-application">http://stackoverflow.com/questions/1691058/asp-net-mvc-customer-application</a></p>
<p>One of the requirements is financial processing and accounting.</p>
<p>I'm very comfortable using SQL Transactions and stored procedures to do this; i.e. CreateCustomer also creates an entity, and an account record. We have a stored procedure to do this, that does a begin transaction, creates some setup records we need, then does a commit. I'm not seeing a good way to do this with an ORM, and after reading some great <a href="http://blogs.tedneward.com/2006/06/26/The+Vietnam+Of+Computer+Science.aspx" rel="nofollow">blog articles</a> I'm starting to wonder if I'm going down the wrong path. </p>
<p>Part of the complexity here is the data itself:</p>
<ol>
<li><p>I'm querying x databases (one per existing customer) to get some of my data, though my app has its own data store as well. I need to query the x databases, run stored procedures on the x databases, and also to my own datastore.</p></li>
<li><p>I'm not seeing strong support for things like stored procedures and thereby transactions, though it does seem to be present.</p></li>
</ol>
<p>Maybe I'm just trying to make my app a nail here, cause the MVC hammer is sooo shiny. I'm plenty comfortable with raw ADO.NET of course, but I'm in love with the expressive feel to writing Linq code in C# and I'd rather not give up on it.</p>
<p>Down to the question:</p>
<p>Is this a bad idea? Should I try to use Linq / Entity Framework, or something like nHibernate... and stick with the ORM pattern or should I trash it and use raw ADO.NET data access? </p>
<p><strong>Edit:</strong> a note on scale; from a queries per second standpoint this app is not "huge". But, from a data complexity perspective, it does need to query against 50+ databases (all identical, or close to it) to read data from an external application and publish data back to that application. ORM feels right when dealing with "my" data store, but feels very wrong for accessing the data from the external application.</p>
http://stackoverflow.com/questions/1812447/how-does-llblgen-compare-to-nhibernate-and-linq-to-entities-performance-wise0How does LLBLGen Compare to Nhibernate and Linq to Entities Performance wiseLuke1012009-11-28T12:39:54Z2009-11-28T18:59:02Z
<p>I am currently using Linq to entities. i am hearing from colleagues that they are having performance issues with L2E and had to implement caching in several places. I have researched some ORMs but could not find any information on LLBLGen performance stats or comparisons. Can you guys help?</p>
http://stackoverflow.com/questions/1795758/linq-entity-inheritance-makes-big-sql-sentences0Linq Entity Inheritance makes BIG SQL SentencesRoman2009-11-25T09:39:29Z2009-11-28T09:05:01Z
<p>We are developing an application with a base entity with more than 10 childs (which inherited from it).</p>
<p>When we make any request with Linq to the base entity we get a SQL statement with a "UNION ALL" for each child. To make a Count() over the base entity it takes near one second and getting only one row can takes two seconds.</p>
<p>For this code:</p>
<pre><code>public bool Exists(int appId, string loginName, DateTime userRegDate, long ahsayId)
{
var backupsets = from backupset in _entities.AhsayBackupSets
where
backupset.User.Appliance.Id == appId &&
backupset.User.LoginName == loginName &&
backupset.User.RegistrationDate == userRegDate &&
backupset.AhsayId == ahsayId
select backupset;
return backupsets.Count() > 0;
}
</code></pre>
<p>, we get this SQL sentence:</p>
<pre><code>exec sp_executesql N'SELECT
[GroupBy1].[A1] AS [C1]
FROM ( SELECT
COUNT(1) AS [A1]
FROM [dbo].[AhsayBackupSets] AS [Extent1]
LEFT OUTER JOIN (SELECT
[UnionAll9].[C1] AS [C1]
FROM (SELECT
[UnionAll8].[C1] AS [C1]
FROM (SELECT
[UnionAll7].[C1] AS [C1]
FROM (SELECT
[UnionAll6].[C1] AS [C1]
FROM (SELECT
[UnionAll5].[C1] AS [C1]
FROM (SELECT
[UnionAll4].[C1] AS [C1]
FROM (SELECT
[UnionAll3].[C1] AS [C1]
FROM (SELECT
[UnionAll2].[C1] AS [C1]
FROM (SELECT
[UnionAll1].[Id] AS [C1]
FROM (SELECT
[Extent2].[Id] AS [Id]
FROM [dbo].[AhsayOracleBackupSets] AS [Extent2]
UNION ALL
SELECT
[Extent3].[Id] AS [Id]
FROM [dbo].[AhsaySystemStateBackupSets] AS [Extent3]) AS [UnionAll1]
UNION ALL
SELECT
[Extent4].[Id] AS [Id]
FROM [dbo].[AhsayMysqlBackupSets] AS [Extent4]) AS [UnionAll2]
UNION ALL
SELECT
[Extent5].[Id] AS [Id]
FROM [dbo].[AhsayMssqlBackupSets] AS [Extent5]) AS [UnionAll3]
UNION ALL
SELECT
[Extent6].[Id] AS [Id]
FROM [dbo].[AhsayFileBackupSets] AS [Extent6]) AS [UnionAll4]
UNION ALL
SELECT
[Extent7].[Id] AS [Id]
FROM [dbo].[AhsayExchangeServerBackupSets] AS [Extent7]) AS [UnionAll5]
UNION ALL
SELECT
[Extent8].[Id] AS [Id]
FROM [dbo].[AhsayDominoBackupSets] AS [Extent8]) AS [UnionAll6]
UNION ALL
SELECT
[Extent9].[Id] AS [Id]
FROM [dbo].[AhsayNotesBackupSets] AS [Extent9]) AS [UnionAll7]
UNION ALL
SELECT
[Extent10].[Id] AS [Id]
FROM [dbo].[AhsayShadowProtectBackupSets] AS [Extent10]) AS [UnionAll8]
UNION ALL
SELECT
[Extent11].[Id] AS [Id]
FROM [dbo].[AhsayWindowsSystemBackupSets] AS [Extent11]) AS [UnionAll9]
UNION ALL
SELECT
[Extent12].[Id] AS [Id]
FROM [dbo].[AhsayExchangeMailBackupSets] AS [Extent12]) AS [UnionAll10] ON [Extent1].[Id] = [UnionAll10].[C1]
LEFT OUTER JOIN [dbo].[AhsayUsers] AS [Extent13] ON [Extent1].[AhsayUserId] = [Extent13].[Id]
INNER JOIN [dbo].[AhsayUsers] AS [Extent14] ON [Extent1].[AhsayUserId] = [Extent14].[Id]
WHERE ([Extent13].[ApplianceId] = @p__linq__0) AND ([Extent13].[LoginName] = @p__linq__1) AND ([Extent14].[RegistrationDate] = @p__linq__2) AND ([Extent1].[AhsayId] = @p__linq__3)
) AS [GroupBy1]',N'@p__linq__0 int,@p__linq__1 nvarchar(4000),@p__linq__2 datetime,@p__linq__3 bigint',@p__linq__0=2,@p__linq__1=N'antonio',@p__linq__2='2009-10-22 18:07:17',@p__linq__3=1256305376226
</code></pre>
<p>As you can imagine, it takes a lot of time (in this case, 1 second, but there is another sentence a lot bigger which takes 4 seconds), and this query is made many times.</p>
<p>Is there some way to reduce the SQL overhead? We know we can use stored procedures for heavy sentences but we don't want to lose the Linq flexibility.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1810409/is-this-an-efficient-query-linq-to-entities1Is this an Efficient Query -- Linq to EntitiesLuke1012009-11-27T19:47:27Z2009-11-27T20:08:32Z
<p>I am setting up a question and answer site. The database is setup to where the questions and answers are in the same table. The questions have a parentid of null and answers and a value in the parentid. Also, comments has a separate table. In the comments table it has foreign key referencing the question and answer table. </p>
<pre><code>var qu = (from q in context.post
where q.post_id == id && q.post_isdeleted == false
orderby q.post_id ascending, q.post_date ascending
select new
{
q.userinfo.user_username,
q.post_id,
q.userinfo.user_userid,
q.post_descriptionrender,
q.post_description,
q.post_title,
q.post_titleslug,
q.post_date,
q.category.catid,
q.post_hits,
q.post_wordcount,
PostAnswers = from a in context.post
where a.post_parentid == id
select new
{
a.post_id,
a.post_date,
a.userinfo.user_userid,
a.post_description,
a.userinfo.user_username,
PostAnswerComments = from c1 in context.comment
where c1.post.post_id == a.post_id && c1.comment_isdeleted == false
select new
{
c1.comment_date,
c1.comment_id,
c1.comment_text,
c1.comment_textrender,
c1.userinfo.user_userid,
c1.userinfo.user_username,
c1.post.post_id
}
},
PostComments = from c in context.comment
where c.post.post_id == q.post_id && c.comment_isdeleted == false
select new
{
c.comment_date,
c.comment_id,
c.comment_text,
c.comment_textrender,
c.userinfo.user_userid,
c.userinfo.user_username,
c.post.post_id
}
}).FirstOrDefault();
</code></pre>
<p>Basically, the query gets a question. Within the query it gets the answers and comments for the question. is there a more efficient way to do this?</p>
http://stackoverflow.com/questions/1809952/what-is-equivalent-getpropvaluet-method-in-l2e0What is equivalent GetPropValue<T> method in L2E ?Renato Bezerra2009-11-27T17:46:16Z2009-11-27T18:42:36Z
<p>Hi people.</p>
<p>I´m have a problem using EF for my data model.</p>
<p>I have this code in my method:</p>
<pre><code> listaPaginada = sortOrder.Equals("asc") ?
_cadastroServ.SelecionaNotasFiscais(idParceiro).OrderBy(i => i.GetType().GetProperty(query)) :
_cadastroServ.SelecionaNotasFiscais(idParceiro).OrderByDescending(i => i.GetType().GetProperty(query));
</code></pre>
<p>i´m using the same method hear to:</p>
<pre><code>Func<NotaFiscal, bool> whereClause = (i => i.GetPropValue<string>(sortName).Contains(query));
listaPaginada = sortOrder.Equals("asc", StringComparison.CurrentCultureIgnoreCase) ?
_cadastroServ.SelecionaNotasFiscais(idParceiro).Where(whereClause).OrderByDescending(i => i.GetPropValue<IComparable>(sortName)) :
_cadastroServ.SelecionaNotasFiscais(idParceiro).Where(whereClause).OrderBy(i => i.GetPropValue<IComparable>(sortName));
</code></pre>
<p>In L2SQL the method GetPropValue exists, but in L2E not.</p>
<p>Someone knows a similar method in L2E ?
or knows how to solve this ? </p>
<p>Regards[]</p>
http://stackoverflow.com/questions/1806856/can-i-do-this-with-an-iqueryablet1Can I do this with an IQueryable<T> ?Pure.Krome2009-11-27T05:05:10Z2009-11-27T06:33:39Z
<p>Hi folks,</p>
<p>is it possible to add an extension method to <code>IQueryable<T></code> and then, for my Linq2Sql or EF or NHibernate or LinqToObjects, define it's functionality / how each repository will impliment this method / translate this method to some sql?</p>
<p>For example, imagine I want the following :-</p>
<pre><code>var result = (from q in db.Categories()
where q.IWishIKnewHowToCode("hi")
select q).ToList();
</code></pre>
<p>now, the code for the extension method <code>IWishIKnewHowToCode()</code> will differ when it's L2S, compared to EF or LinqToObjects, etc.</p>
<p>I'm not talking about a Pipes and Filters, here. That I know how to do that.</p>
<p>So imagine that, if this was L2S, then that method would do a linq <code>Where</code> clause but if the repository was .. say ... LinqToObjects, it would do a <code>Take(10)</code>.</p>
<p>Is this possible?</p>
<p>(I'm not too sure what it's officially called ... about what I'm wanting to do)</p>
http://stackoverflow.com/questions/1802286/best-way-to-check-if-object-exists0Best way to check if object exists?Freddy2009-11-26T08:28:41Z2009-11-26T08:48:24Z
<p>Hi,</p>
<p>What is the best way to check if an object exists in the database from a performance point of view?</p>
<p>Regards
Freddy</p>
http://stackoverflow.com/questions/1798752/linq-where-extension-method-lambda-expressions-and-bools2Linq, Where Extension Method, Lambda Expressions, and Bool'sCreepy Gnome2009-11-25T17:52:21Z2009-11-25T18:10:09Z
<p>Greetings, I am having some issues with using a bool operation within a Where clause extension method of an IQueryable object obtained using Linq to Entities. The first example is showing what does work using Bool1 as the operation I need to move to a where clause extension method. The second example is what doesn't work after the change. Bool1 is is completely ignored and doesn't impact the results.</p>
<p>Example 1:</p>
<pre><code>var results =
from a in context.aTable1
where a.Bool1 == false && a.Bool2 == false
select new
{
Column1 = a.Column1
Bool1 = a.Bool1
Bool2 = a.Bool2
};
results.Where(l => l. Column1.Contains(fooString));
</code></pre>
<p>Example 2:</p>
<pre><code>var results =
from a in context.aTable1
where a.Bool2 == false
select new
{
Column1 = a.Column1
Bool1 = a.Bool1
Bool2 = a.Bool2
};
results.Where(l => l.Bool1 == false);
results.Where(l => l. Column1.Contains(fooString));
</code></pre>
<p>These are over simplified examples, however I hope they show what I am trying to do. The where extension methods are in a different method and are the reason they cannot be done when I am creating the original query. </p>
<p>I have tried the following other ways of doing the same thing with that where clause:</p>
<pre><code>results.Where(l => !l.Bool1);
results.Where(l => l.Bool1.Equals(false));
</code></pre>
<p>They have the same effect which is nothing.</p>
http://stackoverflow.com/questions/1795555/linq-to-entities-replace-a-select-with-a-groupjoin0LINQ to Entities, replace a .Select() with a .GroupJoin()CodeMonkey2009-11-25T09:01:04Z2009-11-25T09:01:04Z
<p>Hi.</p>
<p>I'm trying to construct an object-graph consisting of Data Transfer Objects (DTO) generated from a LINQ query. But I am having an issue with only selecting the rows from the DB that are relevant.</p>
<p>I am getting the FULL tree with NULL-values all over the place because of my .Select() usage which correlates with LEFT OUTER JOIN.</p>
<p>What I really need is INNER JOIN. </p>
<p>I've read through som posts and found that the extension-method I need to use is .GroupJoin(), but I seem to have trouble wrapping my brain around understanding how to write it.</p>
<p>Now for some code:</p>
<pre><code> var interval = new RegistrationIntervalDTO()
{
Customers = CustomerRepository.FindAllCustomers().Select(c => new CustomerDTO()
{
//customer
BackendId = c.BackendId,
CustomerId = c.CustomerId,
Name = c.Name,
LastUpdated = c.LastUpdated,
Projects = c.Project.Select(p => new ProjectDTO()
{
//project
BackendId = p.BackendId,
ProjectId = p.ProjectId,
Active = p.Active,
CompanyId = p.CompanyId,
LastUpdated = p.LastUpdated,
Name = p.Name,
Phases = p.Phase.Select(ph => new PhaseDTO()
{
//phase
BackendId = ph.BackendId,
PhaseId = ph.PhaseId,
Name = ph.Name,
LastUpdated = ph.LastUpdated,
Activities = ph.Activity.Select(a => new ActivityDTO()
{
//activity
ActivityId = a.ActivityId,
BackendId = a.BackendId,
EndDate = a.EndDate,
LastUpdated = a.LastUpdated,
Name = a.Name,
TimeRegistrations = a.TimeRegistration.Select(t => new TimeRegistrationDTO()
{
//timeregistration
TimeRegistrationId = t.TimeRegistrationId,
Approved = t.Approved,
Date = t.Date,
Hours = t.Hours,
Note = t.Note,
PrivateNote = t.PrivateNote,
Transferred = t.Transferred,
ContactName = t.ContactName,
Resource = new ResourceDTO() {
ResourceId = t.Resource.ResourceId,
CompanyId = t.Resource.Company.CompanyId,
Initials = t.Resource.Initials,
Name = t.Resource.Name,
LastUpdated = t.Resource.LastUpdated
},
//kind
Kind = new KindDTO() {
BackendId = t.Kind.BackendId,
KindId = t.Kind.KindId,
LastUpdated = t.Kind.LastUpdated,
Name = t.Kind.Name
}
}).Where(t => t.Resource.Initials.Equals("XXXXXXXX"))
}).OrderBy(a => a.Name)
}).OrderBy(ph => ph.Name)
}).OrderBy(p => p.Name)
}).OrderBy(c => c.Name)
.ToList()
};
</code></pre>
<p>What this code does is, get all customers and load them into CustomerDTOs, then for each customer, get all Projects and load them into ProjectDTOs, then for each project get all Phases, and load the into PhaseDTOs, and so forth.</p>
<p>The criteria I set will be a date-interval and a resource's initials.</p>
<p>Currently I am getting every single customer and project etc. and all I need are the ones where there is a Resource and that Resource's initials equals some string 'XXX'</p>
<p><strong>Additional aid regarding Repositories</strong></p>
<p>I can make any additional repositories if they are needed. </p>
http://stackoverflow.com/questions/1785410/asp-net-mvc-and-linq-to-entities-how-to-include-text-value-from-ienumerablesel1asp.net mvc and linq to entities: how to include text value from IEnumerable<SelectListItem>chris2009-11-23T19:28:48Z2009-11-24T15:15:46Z
<p>I have a table with a constraint on one field - it can be 1, 2 or 3. (The correct solution to this is probably to create a lookup table for this, but for now I'm wondering if it's possible to do this without the lookup table.)</p>
<p>I've created a class that returns an IEnumerable for the values. I'm using LINQ to Entities, and would like to be able to display the text value in a col. when listing all the entities. </p>
<p>The code for create/edit looks like:</p>
<p>Controller.cs:</p>
<pre><code> ViewData["Message_Types"] = MessageTypes.MessageTypeList;
</code></pre>
<p>edit.aspx:</p>
<pre><code> <%= Html.DropDownList("Message_Type",(IEnumerable<SelectListItem>)ViewData["Message_Types"]) %>
</code></pre>
<p>and the default model binding works just fine using TryModelUpdate:</p>
<pre><code>[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(int id, FormCollection form)
{
...
TryUpdateModel(editItem, new string[] { "Message_Type" });
...
}
</code></pre>
<p>How However, I'd like to display the text value instead of the numeric value:</p>
<p>index.aspx:</p>
<pre><code> <td>
<%= Html.Encode(item.Message_Type) %>
</td>
</code></pre>
<p>How can I get the text value of the element that corresponds to the item.Message_type?</p>
<p>Update:</p>
<p>The message types look like:</p>
<pre><code>public static IEnumerable<SelectListItem> MessageTypeList
{
get
{
return new[] {
new SelectListItem{ Text = "Text Value 1", Value="1" },
new SelectListItem{ Text = "Text Value 2", Value="2" },
new SelectListItem{ Text = "Text Value 3", Value="3" }
};
}
}
</code></pre>
http://stackoverflow.com/questions/1786085/linq-training-native-sql-queries-to-linq1LINQ Training: Native SQL Queries to LINQAndrew Robinson2009-11-23T21:24:10Z2009-11-24T14:48:15Z
<p>Can anyone point out some good LINQ training resources. Mostly interested in getting some developers that are very skilled with SQL up to speed using Lambda and LINQ queries. They are struggling with some of their more advanced queries and fall back on ExecuteQuery() to kind of do the LINQ thing. Queries that used to be easy in TSQL but are now very difficult for them with LINQ.</p>
http://stackoverflow.com/questions/1787381/entity-framework-many-to-many-with-additional-field-on-joining-table1Entity Framework Many-To-Many with additional field on Joining TableCory G2009-11-24T02:19:35Z2009-11-24T02:54:55Z
<p>I have an entity context that includes three tables (see <a href="http://www.nufaceinteractive.com/layout.png" rel="nofollow">diagram here</a>). The first is a table that contain products, the second contains recipes. The joining table has fields for ID's in both the products and recipes table as well as a 'bit' field called 'featured'. </p>
<p>I've searched and found no example on how to insert only how to select against this type of scenario.Does anyone have any suggestions on how this can be done? Thanks in advance for any help.</p>
<p>Cory</p>
http://stackoverflow.com/questions/1783536/sql-server-query-execution-plan-rebuild1SQL Server Query Execution Plan RebuildLukasz2009-11-23T14:41:06Z2009-11-23T15:53:08Z
<p>I have this query that gets executed though Linq to Entities. First time the query runs it generates the execution plan which takes just under 2 minutes. After the plan is cached the query takes 1 or 2 seconds. The problem I have is that the plan keeps getting rebuild every few hours and I am not sure why that would be?</p>
<p>This is the linq query we are using, I know it looks crazy but for what we need this was our only option.</p>
<pre><code>var data = from row in mgr.ServiceDesk_RequestEvent
.Include("ServiceDesk_Event")
.Include("ServiceDesk_Event.ServiceDesk_SLAEventRule")
.Include("ServiceDesk_Event.ServiceDesk_SLAEventRule.ServiceDesk_RuleSet")
.Include("ServiceDesk_Event.ServiceDesk_SLAEventRule.ServiceDesk_RuleSet.ServiceDesk_Rule")
.Include("ServiceDesk_Event.ServiceDesk_SLAEventRule.ServiceDesk_RuleSet.ServiceDesk_Rule.ServiceDesk_RuleOperator")
.Include("ServiceDesk_Event.ServiceDesk_SLAEventRule.ServiceDesk_RuleSet.ServiceDesk_Rule.ServiceDesk_RuleConstraintField")
.Include("ServiceDesk_Event.ServiceDesk_SLAEventRule.ServiceDesk_RuleSet.ServiceDesk_Rule.ServiceDesk_RuleConstraintValue")
.Include("ServiceDesk_Event.ServiceDesk_SLAEventRule.ServiceDesk_RuleSet.ServiceDesk_Action")
.Include("ServiceDesk_Request")
.Include("ServiceDesk_Request.People_User")
.Include("ServiceDesk_Request.ServiceDesk_RequestCategory")
.Include("ServiceDesk_Request.ServiceDesk_RequestCategory.ServiceDesk_SLA")
.Include("ServiceDesk_Request.ServiceDesk_RequestRole_Groups")
.Include("ServiceDesk_Request.ServiceDesk_RequestRole_Groups.Security_Role.Security_UserRoles")
.Include("ServiceDesk_Request.ServiceDesk_RequestRole_Groups.Security_Role.Security_UserRoles.Security_User")
.Include("ServiceDesk_Request.ServiceDesk_RequestPriority")
.Include("ServiceDesk_Request.Offices_User")
.Include("ServiceDesk_Request.ServiceDesk_RequestTechnicians")
.Include("ServiceDesk_Request.ServiceDesk_RequestTechnicians.People")
where row.Completed == false && row.Deleted == false
select row;
</code></pre>
<p>I don't want to paste the generated t-sql here since it quite large. If anyone has ideas please feel free to contribute.</p>
<p>Thank You.</p>
http://stackoverflow.com/questions/1264487/how-to-get-a-related-object-sorted-with-entity-framework-for-asp-net-mvc0How to get a related object sorted with Entity Framework for ASP.NET MVCJ. Pablo Fernández2009-08-12T06:20:42Z2009-11-21T19:08:33Z
<p>Having two classes like Blog and Post, in Entity Framework (and LINQ-to-Entities), how can you get the blogs with the posts sorted by date. I was getting the blogs with the posts this way:</p>
<pre><code>from blog in db.BlogSet.Include("Posts") select blog
</code></pre>
<p>and now I'm forced to do this:</p>
<pre><code>public class BlogPosts {
public Blog Blog { get; set; }
public IEnumerable<Post> Posts { get; set; }
}
from blog in db.BlogSet
select new BlogPosts() {
Blog = blog,
Posts = blog.Posts.OrderByDescending(p => p.PublicationTime)
}
</code></pre>
<p>which is very convoluted and ugly. The reason why I'm creating a BlogPosts class is that now, since I have to pass two variables, Blog and Posts, to MVC, I need a view model.</p>
<p>I'm even tempted to try this hack:</p>
<pre><code>from blog in db.BlogSet
select new Blog(blog) {
Posts = blog.Posts.OrderByDescending(p => p.PublicationTime)
}
</code></pre>
<p>but what's the correct way to do it? Is Entity Framework not the way to go with MVC?</p>
http://stackoverflow.com/questions/1772753/linq-to-entities-format-date-in-select-query-expression0Linq-to-Entities: Format Date in select query expressionAbeP2009-11-20T19:33:29Z2009-11-20T19:51:45Z
<p>I am trying to get a formatted date string directly from a LINQ-to-Entities query expression.</p>
<pre><code>nonBusinessDays = (from ac in db.AdminCalendar
where ac.DateTimeValue >= calendarStartDate && ac.DateTimeValue <= calendarEndDate && ac.IsBusinessDay == false
select ac.MonthValue + "/" + ac.DayOfMonth + "/" + ac.FullYear).ToList();
</code></pre>
<p>But, I get the folloinw error message:
"Unable to cast the type 'System.Nullable`1' to type 'System.Object'. LINQ to Entities only supports casting Entity Data Model primitive types."</p>
<p>Is there any way to do this besides iterating through the result set?
Thanks!
Abe</p>
http://stackoverflow.com/questions/1760505/how-can-i-write-linq2entities-query-with-inner-joins1How can i write Linq2Entities Query with inner joinsYucel2009-11-19T02:23:47Z2009-11-20T17:28:56Z
<p>How can i get data from these related entities. I want to get these columns only:
Term.Name , related Concept_Term.Weight, related Concept.Id</p>
<p>I wrote the SQL but i dont want to use</p>
<pre><code> select t.Name,ct.ConceptId,ct.Weight from Term t
inner join Concept_Term ct on t.Id=ct.TermId
inner join Concept c on c.Id=ct.ConceptId
where c.Id == 80298 and t.LanguageId=2
</code></pre>
<p>What i want to see is the same result like a table in a console application with the same result that i wrote in SQL.</p>
<p>Picture of the entities : <a href="http://img7.imageshack.us/img7/7129/77365088.jpg" rel="nofollow">http://img7.imageshack.us/img7/7129/77365088.jpg</a></p>
<p>Note: Sorry i cant embedd this photo in my post because system dont allow to me</p>
http://stackoverflow.com/questions/1765423/problem-getting-guid-string-value-in-linq-to-entity-query0Problem getting GUID string value in Linq-To-Entity queryFischer2009-11-19T18:18:33Z2009-11-20T15:03:35Z
<p>Hi,</p>
<p>I am trying to write a GUID value to a string in a linq select. The code can be seen below (where c.ID is GUID), but I get the following error:</p>
<p><em>Unable to cast the type 'System.Guid' to type 'System.Object'. LINQ to Entities only supports casting Entity Data Model primitive types.</em></p>
<pre><code>var media = (
from media in Current.Context.MediaSet
orderby media.CreatedDate
select new Item
{
Link = "~/Media.aspx?id=" + media.ID,
Text = "Media",
Time = media.CreatedDate
}
).ToList();
</code></pre>
http://stackoverflow.com/questions/374267/contains-workaround-using-linq-to-entities7'Contains()' workaround using Linq to Entities?jbloomer2008-12-17T11:24:20Z2009-11-19T20:53:54Z
<p>I'm trying to create a query which uses a list of ids in the where clause, using the Silverlight ADO.Net Data Services client api (and therefore Linq To Entities). Does anyone know of a workaround to Contains not being supported?</p>
<p>I want to do something like this:</p>
<pre><code>List<long?> txnIds = new List<long?>();
// Fill list
var q = from t in svc.OpenTransaction
where txnIds.Contains(t.OpenTransactionId)
select t;
</code></pre>
http://stackoverflow.com/questions/1221714/linq-to-entities-on-database-microsoft-sql-server1LINQ to Entities on (database != Microsoft SQL Server)Robert Koritnik2009-08-03T10:53:59Z2009-11-19T09:02:22Z
<p>My production is on full blown SQL Server 2008.</p>
<p>I would like to have <strong>integration tests with some light weight database</strong> that</p>
<ul>
<li>doesn't have to be installed on the machine and</li>
<li>doesn't run as a service</li>
</ul>
<p>...if at all possible.</p>
<p>I use LINQ to Entities in my code that probably makes this goal even more complicated.</p>
<p>Is it possible to use any lightweight DB to accomplish this goal? Do those DBs have LINQ providers or whatever they're called to translate LINQ to actual queries...</p>
<p><strong>Anybody has any experience with LINQ to Entities with third party databases?</strong></p>
http://stackoverflow.com/questions/1478215/how-to-compare-only-date-components-from-datetime-in-c3How to compare only date components from DateTime in C#?pencilslate2009-09-25T16:07:59Z2009-11-18T23:59:18Z
<p>I am having two date values, one already stored in the database and the other selected by the user using DatePicker. The use case is to search for a particular date from the database.</p>
<p>The value previously entered in the database always has time component of 12:00:00, where as the date entered from picker has different time component. </p>
<p>I am interested in only the date components and would like to ignore the time component. </p>
<p>What are the ways to do this comparison in C#?</p>
<p>Also, how to do this in LINQ?</p>
<p>UPDATE:
On LINQ to Entities, the following works fine.</p>
<pre><code>e => DateTime.Compare(e.FirstDate.Value, SecondDate) >= 0
</code></pre>
http://stackoverflow.com/questions/1758614/asp-net-mvc-how-to-create-custom-binding-for-models-when-using-linq-to-entities1asp.net mvc: how to create custom binding for models when using LINQ to Entitieschris2009-11-18T19:53:50Z2009-11-18T20:54:23Z
<p>I've got a number of tables in my db that share common cols: modified by, modified date, etc. Not every table has these cols. We're using LINQ to Enties to generate the </p>
<p>I'd like to create a custom binder class that can handle the automatic binding of these fields. Is there a way to do this without having a custom binding class for each entity class?</p>
<p>Here's the code I have:</p>
<p>In global.asax.cs, Application_Start():</p>
<pre><code> ModelBinders.Binders.Add(typeof(Foo),new FooBinder());
</code></pre>
<p>Then in FooBinder.cs:</p>
<pre><code>public override Object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var obj = (Foo)base.BindModel(controllerContext, bindingContext);
var user = controllerContext.HttpContext.User.Identity;
obj.modified_by = user.Name;
obj.modified_date = DateTime.Now;
return obj;
}
</code></pre>
<p>Is there a way to generalize this so it can handle multiple types?</p>
http://stackoverflow.com/questions/264175/entity-framework-linq-to-sql-conflict-of-interest5Entity Framework & LINQ To SQL - Conflict of interest?Vyas Bharghava2008-11-05T02:10:28Z2009-11-18T19:36:02Z
<p>I've been reading on the blogosphere for the past week that Linq to SQL is dead [and long live EF and Linq to Entities]. But when I read the overview on MSDN, it appeared to me Linq to Entities generates eSQL just the way Linq to SQL generates SQL queries.</p>
<p>Now, since the underlying implementation (and since SQL Server is not yet an ODBMS) is still a Relational store, at some point the Entity framework has to make the translation into SQL queries. Why not fix the Linq to SQL issues (m:m relationships, only SQL server support etc.) and use Linq to SQL in as the layer that generates these queries?</p>
<p>Is this because of performance or EF uses a different way of transforming the eSQL statement into SQL?</p>
<p>It seemed to me - at least for my unlearned mind - a natural fit to dogfood Linq to SQL in EF.</p>
<p>Comments?</p>
http://stackoverflow.com/questions/1737658/asp-net-mvc-many-to-many-one-to-many0asp.net mvc many-to-many one-to-manyloviji2009-11-15T14:34:31Z2009-11-18T17:11:27Z
<p>Hello, I am new in asp.net MVC, and in Entity Framework to.
I watch on asp.net mvc tutorials, but they are very easy.
I need to write little site, and in my database have one-to-many reletionship.
if i want to select data from two tables (classic inner join), what you recommended to use, db views or Linq to Entity queries.
If Ling to Entity, please share with me little tutorial about how to do this in asp.net mvc.
or give some advices.</p>
<p>best regards.</p>
http://stackoverflow.com/questions/1747123/linq-to-entities-select-clause-containing-non-ef-method-calls1LINQ-to-Entities select clause containing non-EF method callsJustin Grant2009-11-17T07:14:38Z2009-11-17T15:11:30Z
<p>I'm having trouble building an Entity Framework LINQ query whose select clause contains method calls to non-EF objects.</p>
<p>The code below is part of an app used to transform data from one DBMS into a different schema on another DBMS. In the code below, Role is my custom class unrelated to the DBMS, and the other classes are all generated by Entity Framework from my DB schema:</p>
<pre><code>// set up ObjectContext's for Old and new DB schemas
var New = new NewModel.NewEntities();
var Old = new OldModel.OldEntities();
// cache all Role names and IDs in the new-schema roles table into a dictionary
var newRoles = New.roles.ToDictionary(row => row.rolename, row => row.roleid);
// create a list or Role objects where Name is name in the old DB, while
// ID is the ID corresponding to that name in the new DB
var roles = from rl in Old.userrolelinks
join r in Old.roles on rl.RoleID equals r.RoleID
where rl.UserID == userId
select new Role { Name = r.RoleName, ID = newRoles[r.RoleName] };
var list = roles.ToList();
</code></pre>
<p>But calling ToList gives me this NotSupportedException:</p>
<blockquote>
<p>LINQ to Entities does not recognize
the method 'Int32
get_Item(System.String)' method, and
this method cannot be translated into
a store expression</p>
</blockquote>
<p>Sounds like LINQ-to-Entities is barfing on my call to pull the value out of the dictionary given the name as a key. I admittedly don't understand enough about EF to know why this is a problem. </p>
<p>I'm using devart's <a href="http://www.devart.com/dotconnect/postgresql/" rel="nofollow">dotConnect for PostgreSQL</a> entity framework provider, although I assume at this point that this is not a DBMS-specific issue.</p>
<p>I know I can make it work by splitting up my query into two queries, like this:</p>
<pre><code>var roles = from rl in Old.userrolelinks
join r in Old.roles on rl.RoleID equals r.RoleID
where rl.UserID == userId
select r;
var roles2 = from r in roles.AsEnumerable()
select new Role { Name = r.RoleName, ID = newRoles[r.RoleName] };
var list = roles2.ToList();
</code></pre>
<p>But I was wondering if there was a more elegant and/or more efficient way to solve this problem, ideally without splitting it in two queries. </p>
<p>Anyway, my question is two parts:</p>
<p>First, can I transform this LINQ query into something that Entity Framework will accept, ideally without splitting into two pieces?</p>
<p>Second, I'd also love to understand a little about EF so I can understand why EF can't layer my custom .NET code on top of the DB access. My DBMS has no idea how to call a method on a Dictionary class, but why can't EF simply make those Dictionary method calls after it's already pulled data from the DB? Sure, if I wanted to compose multiple EF queries together and put custom .NET code in the middle, I'd expect that to fail, but in this case the .NET code is only at the end, so why is this a problem for EF? I assume the answer is something like "that feature didn't make it into EF 1.0" but I am looking for a bit more explanation about why this is hard enough to justify leaving it out of EF 1.0.</p>
<p>Thanks in advance for your help!</p>
http://stackoverflow.com/questions/1737660/how-to-do-paging-with-linq-to-entities0How to do paging with Linq to Entities? [closed]LukLed2009-11-15T14:35:23Z2009-11-16T09:05:16Z
<p>How do you calculate efficiently number of pages using Linq to Entities?</p>
<p>Using sql, it could be like:</p>
<pre><code>SELECT TOP 20
COLUMN_LIST,
COUNT(*) OVER() NO_OF_ROWS
FROM TABLE_NAME
</code></pre>
<p>We get 20 rows for the first page with number of rows in whole query. Number of pages can be easily calculated.</p>
<p>How do I calculate number of pages using Linq to Entities? Am I missing something? I can first use Count() and then Skip() and Take(), but it will propable generate too much unnecessary load on SQL Server and network.</p>
<p><strong>EDIT:</strong></p>
<p>I've just looked at profiler and found that EF calculates count pretty efficiently. It doesn't fire whole query just to get Count(). It fits me. Sorry, no question.</p>
http://stackoverflow.com/questions/1730592/linq-to-enties-insert-foriegn-keys0Linq to enties, insert foriegn keysrichard hartz2009-11-13T17:03:05Z2009-11-14T00:35:06Z
<p>I am using the ADO entity framework for the first time and am not sure of the best way of inserting db recored that contain foreign keys.</p>
<p>this is the code that i am using, I would appreciate any comments and suggestion on this.</p>
<pre><code>using (KnowledgeShareEntities entities = new KnowledgeShareEntities())
{
Questions question = new Questions();
question.que_title = questionTitle;
question.que_question_text = questionText;
question.que_number_of_views = 0;
question.que_is_anonymous = isAnonymous;
question.que_last_activity_datetime = DateTime.Now;
question.que_timestamp = DateTime.Now;
question.CategoriesReference.Value = Categories.CreateCategories(categoryId);
question.UsersReference.Value = Users.CreateUsers(userId);
entities.AddToQuestions(question);
entities.SaveChanges();
return question.que_id;
}
</code></pre>
http://stackoverflow.com/questions/1721811/using-static-data-access-methods-with-the-ado-net-entity-framework0Using static data access methods with the ADO.NET Entity Frameworkrichard hartz2009-11-12T12:22:11Z2009-11-12T12:35:46Z
<p>Hi I am using the ADO.NET entity framework for the first time and the staticcode analysis is suggesting I change the following method to a static one as below. </p>
<p>My question is simple, is this thread safe?</p>
<pre><code>public static void InsertUserDetails(UserAccount userAccount)
{
using (KnowledgeShareEntities entities = new KnowledgeShareEntities())
{
Users user = new Users();
user.usr_firstname = userAccount.FirstName;
user.usr_surname = userAccount.LastName;
user.usr_email = userAccount.Contact.Email;
user.usr_logon_name = userAccount.SAMUserAccountName.ToUpper();
user.usr_last_login_datetime = DateTime.Now;
entities.AddToUsers(user);
entities.SaveChanges();
}
}
</code></pre>