score:2
Yes, familiarity with ORM's--especially if they're part of the framework, as LINQ2SQL and the Entity Framework are--will help you, even if you don't use them. While ORM's aren't quite as handy when dealing in a stored-proc-only environment, they're still nice to have and know how to use.
score:1
There are many situations were ORMs and/or Linq (which is different from LinqToSql) will make you more productive. Given the kind of things you work on, those technologies are likely a very good fit for you.
There are many potential technologies you could learn and benefit from, so it can be hard to decide which one to invest in first. I think in this case, it's worth digging in as soon as you are able.
As far as database first or class first design, a good ORM will support either approach. Often, an ORM saves you time since you no longer have to create CRUD stored procedures if that is something you normally do.
In many cases, once you are familiar with the technologies, your development times will be noticeably faster.
Source: stackoverflow.com
Related Query
- Should I invest time in learning about OR\M or LINQ?
- Learning about LINQ
- Should I be concerned about "access to modified closure" in a linq queries?
- How should I get started learning about ADO.NET Entity Framework?
- LINQ Source Code Available
- creating Linq to sqlite dbml from DbLinq source code
- Accessing SQL Server time in code with LINQ
- What XML related technologies I should know before learning LINQ to XML?
- source code for LINQ 101 samples
- Should I worry about the upgrade path for LINQ (the query language)
- c# Linq or code to extract groups from a single list of source data
- Linq Find Partial Text Match - Included code returns duplicate and everything except what it should
- Convert string[] to int[] in one line of code using LINQ
- Code equivalent to the 'let' keyword in chained LINQ extension method calls
- Convert list to dictionary using linq and not worrying about duplicates
- LINQ order by null column where order is ascending and nulls should be last
- Linq code to select one item
- how to update the multiple rows at a time using linq to sql?
- Should I use two "where" clauses or "&&" in my LINQ query?
- Should LINQ be avoided because it's slow?
- How are people unit testing code that uses Linq to SQL
- LINQ aggregate and group by periods of time
- When should I use LINQ for C#?
- What is the time complexity of Linq OrderBy().ThenBy() method sequence?
- Should the order of LINQ query clauses affect Entity Framework performance?
- LINQ query to perform a projection, skipping or wrapping exceptions where source throws on IEnumerable.GetNext()
- I am wondering about the state of connection and impact on code performance by 'yield' while iterating over data reader object
- Syntax to execute code block inside Linq query?
- Linq performance: should I first use `where` or `select`
- Linq To Sql compare Time only
More Query from same tag
- Entity Framework model.edmx and many to many relationships
- c# compare two lists based on sub items and return the difference
- LINQ groupby, divide and extract
- A lookup table for predicates?
- .Sum() function returns wrong result
- Searching each property value of an IQueryable collection of T against the value of a search query. How do I test for NOT NULL and CONTAINS together?
- Use XPath to find all JavaScript type script elements
- Using Linq to drill down on strongly typed objects
- Entity Framework: Selecting distinct objects
- GroupJoin, SelectMany, GroupBy and Sum
- Dynamic Lambda Expression For Filtering
- Update Generic list<T> using LINQ
- Cannot convert lambda expression to type 'string' because it is not a delegate type RelayCommand Model
- selectlist distinct upper mix in query
- Found Duplicate record in excel sheet using c# .net
- Resolving generic lambda expression type
- TSQL equivalent of Linq SelectMany
- LINQ to SQL Query for Many-to-Many relationship
- Search an item in a complex object type list
- Using Linq's Where/Select to filter out null and convert the type to non-nullable cannot be made into an extension method
- LINQ. Return Matching Records from second table.
- Make Reachable Class Out Of DataTable LINQToDataTable<T>()?
- How to pass Datetime externally into SQL
- Sorting List<TextBox> Numerically C#
- LINQ dependent calculation assignment
- C# Ranking of objects, multiple criteria
- LINQ Dynamic Query using Expression Tree
- Convert LINQ join query to SQL inline join query
- EF4 / LINQ: Retrieving two child-nodes in one query
- Select subset of elements by comparing them with each other in LINQ