What is the translation of " LINQ TO SQL " in English?

LINQ to SQL

Examples of using Linq to sql in Vietnamese and their translations into English

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
Chu đề: linq to sql.
Tags: LINQ to SQL.
NET dễ dàng vào các mô hình dữ liệu LINQ to SQL.
NET that takes advantage of LINQ to SQL data models.
Sử dụng LINQ to SQL.
Do not use linq to sql.
Dưới đây là haibài đầu tiên trong loạt bài LINQ to SQL.
Below are the first two parts of my LINQ to SQL series.
LINQ to SQL hỗ trợ đầy đủ transaction, view và các stored procedure.
LINQ to SQL fully supports transactions, views, and stored….
Combinations with other parts of speech
Usage with verbs
Tháng trước tôi bắt đầu viết loạt bài về LINQ to SQL.
Last month I started a blog post series covering LINQ to SQL.
Bạn có thể thêmmột mô hình dữ liệu LINQ to SQL và một dự án ASP.
You can add a LINQ to SQL data model to an ASP.
Đoạn code trên tận dụngưu điểm của 2 đặc tính trong LINQ to SQL.
The code above takes advantage of two characteristics of LINQ to SQL.
Tôi sẽ nói về cách dùng optimistic concurrency với LINQ to SQL trong các bài viết khác.
I will cover how to use optimistic concurrency with LINQ to SQL in a future blog post.
Có một số cách để tải dữ liệu vào một DataSet,chẳng hạn như bằng cách sử dụng lớp DataAdapter hay LINQ to SQL.
There are several ways to load data into a DataSet,such as using the DataAdapter class or LINQ to SQL.
Khi bạn nhấn nút" save" bên trong bề mặt thiết kế LINQ to SQL, Visual Studio sẽ tiếp tục tồn tại các lớp.
When you press the"save" button within the LINQ to SQL designer surface, Visual Studio will persist out.
Việc chọn mục“ LINQ to SQL” sẽ khởi chạy LINQ to SQL designer, và cho phép bạn mô hình hóa các lớp mà nó biểu diễn một CSDL quan hệ.
Selecting the"LINQ to SQL" item will launch the LINQ to SQL designer, and allow you to model classes that represent a relational database.
Mike Taulty cũng có một số đoạn video rất hay về LINQ to SQL mà bạn nên xem tại đây. bạn có thể thực hiện các câu truy vấn.
Mike Taulty also has a number of great LINQ to SQL videos that I recommend checking out here.
Trong LINQ to SQL, mô hình dữ liệu của cơ sở dữ liệu quan hệ được ánh xạ đến mô hình đối tượng thể hiện trong ngôn ngữ lập trình của nhà phát triển.
In LINQ to SQL, the data model of a relational database is mapped to an object model expressed in the programming language of the developer.
Ngoài việc cập nhật các dòng đã có trong CSDL, LINQ to SQL còn cho phép bạn thêm và xóa dữ liệu.
In addition to updating existing rows in the database, LINQ to SQL obviously also enables you to insert and delete data.
SubmitChanges() như trên, LINQ to SQL sẽ tính toán và thực thi một tập thích hợp các phát biểu UPDATE để cập nhật các sản phẩm có thuộc tính ReorderLevel đã bị thay đổi.
SubmitChanges() above, LINQ to SQL will calculate and execute an appropriate set of UPDATE statements to modify the products who had their ReorderLevel property changed.
Bảng các phương thức bên tay phải bên trong trình thiết kế LINQ to SQL ở trên chứa một danh sách các SP để tương tác với mô hình dữ liệu của chúng ta.
The right-hand method pane within the LINQ to SQL design surface above contains a list of stored procedures that interact with our database model.
LINQ to SQL, cũng như LINQ to SQL, và tất cả các tính năng khác mà tôi đã nói đến trong loạt bài này sẽ đượccoi như một phần của. NET 3.5 và Visual Studio“ Orcas”( nay là Visual Studio 2008).
LINQ to SQL, the LINQ to SQL Designer, and all of the features that I'm covering in this blog post series will ship as part of the. NET 3.5 and Visual Studio"Orcas" release.
Chúng ta có thể thực hiện bao nhiêu câu truy vấnvà thay đổi mà chúng ta muốn bằng cách dùng LINQ to SQL DataContext. and these changes will all be tracked together.
We can make any number of queries andchanges we want using a LINQ to SQL DataContext, and these changes will all be tracked together.
Khi định nghĩa các lớp mô hình dữ liệu dùng LINQ to SQL designer trong VS 2008, chúng sẽ mặc nhiên được gán các quy tắc xác thực dựa trên cấu trúc định nghĩa trong CSDL.
When you define your data model classes using the LINQ to SQL designer in VS 2008, they will by default be annotated with some validation rules inferred from the schema of the tables in the database.
NET. LINQ to SQL cho phép bạn làm điều này bằng cách viết các câu truy vấn dùng cú pháp LINQ với lớp NorthwindDataContext mà chúng ta đã tạo dùng trình thiết kế LINQ to SQL designer ở trên.
LINQ to SQL enables you to do this by writing LINQ syntax queries against the NorthwindDataContext class that we created using the LINQ to SQL designer above.
Chú ý cách chúng tađã dùng tập hợp“ OrderDetails” mà LINQ to SQL đã tạo trên mỗi lớp Product( nhờ vào mối quan hệ một- nhiều mà chúng ta đã mô hình hóa trong trình thiết kế LINQ to SQL).
Notice above how we are using the"OrderDetails" collection that LINQ to SQL has created for us on each Product class(because of the 1 to many relationship we modeled in the LINQ to SQL designer).
Hãy nhớ là nếu giá trị của các thuộc tính của đối tượng Product không bị thay đổi bởicâu lệnh trên, có nghĩa là bản thân đối tượng không bị thay đổi, thì LINQ to SQL cũng sẽ không thực thi bất kỳ câu lệnh UPDATE nào trên đối tượng đó.
Note that if a Product's property values weren't changed by the property assignments above,then the object would not be considered changed and LINQ to SQL would therefore not execute an update for that product back to the database.
Tất cả các lớp được tạo ra dùng LINQ to SQL designer đều được định nghĩa như“ partial class”- có nghĩa là bạn có thể viết thêm code để thêm vào các thuộc tính, phương thức và sự kiên cho chúng.
All classes created using the LINQ to SQL designer are defined as"partial classes"- which means that you can optionally drop into code and add additional properties, methods and events to them.
Bạn có thể thêm các phép kiểm tra thích hợp vào bêntrong các phương thức đó- và nếu dữ liệu hợp lệ, LINQ to SQL sẽ tiếp tục lưu lại các thay đổi vào CSDL( bằng cách gọi phương thức“ ExecuteDynamicXYZ” của DataContext).
You can add appropriate validation logic within these methods-and if it passes then tell LINQ to SQL to continue with persisting the relevant changes to the database(by calling the DataContext's"ExecuteDynamicXYZ" method).
Một cách tiếp cận khác mà LINQ to SQL hỗ trợ là dùng mô hình optimistic concurrency- khi đó LINQ to SQL sẽ tự động xác định xem giá trị gốc trong CSDL đã bị thay đổi bở người dùng khác hay chưa.
Another approach which LINQ to SQL supports is to use an optimistic concurrency model- where LINQ to SQL will automatically detect if the original values in the database have been updated by someone else prior to the new values being persisted.
LINQ to Objects Thuật ngữ" LINQ to Objects" đề cập đến việc sử dụng các truy vấn LINQ với bất kỳ tập hợp IEnumerable hay IEnumerable( T), mà không cần sử dụng một nhà cung cấp hayAPI như LINQ to SQL hay LINQ to XML.
LINQ to Objects- Refers to the use of LINQ queries with any IEnumerable or IEnumerable(T) collection directly, without the use of an intermediate LINQ provider or API,such as LINQ to SQL or LINQ to XML.
Không giống như chức năng DataSet/ TableAdapter có trongVS 2005, khi dùng LINQ to SQL designer, bạn không cần chỉ ra câu truy vấn SQL được dùng để tạo ra mô hình và lớp truy xuất dữ liệu.
Unlike the DataSet/TableAdapter feature provided in VS 2005,when using the LINQ to SQL designer you do not have to specify the SQL queries to use when creating your data model and access layer.
Một trong những câu hỏi mà các nhà phát triển( và đặc biệt là các DBA- các nhà quản trị CSDL), những người đã từngviết các thủ tục( SPROC) với các câu SQL tùy biến thường hỏi khi nhìn thấy LINQ to SQL lần đầu tiên là:“ làm sao tôi có thể kiểm soát hoàn toàn các câu lệnh SQL được thực thi bên dưới?”.
One of the questions that developers(and especially DBAs) who are used to writing SPROCs with customSQL usually ask when seeing LINQ to SQL for the first time is-"but how can I have complete control of the underlying SQL that is executed?".
Nhớ rằng bạn có thể dễ dàng thay thế câu SQLLINQ to SQL thực thi nếu muốn. mặc dù trong 98% trường hợp tôi nghĩ bạn sẽ thấy rằng câu lệnh mà LINQ to SQL thực thi là thực sự.
Note that you can optionally override the raw SQL that LINQ to SQL executes in cases where you want to change it- although in 98% of scenarios I think you will find that the SQL code that LINQ to SQL executes is really, really good.
Results: 78, Time: 0.0218

Word-for-word translation

Top dictionary queries

Vietnamese - English