Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Como Conectarse a SQL Server desde Blazor WebAs...
Search
Lautaro Carro
September 24, 2020
Programming
0
720
Como Conectarse a SQL Server desde Blazor WebAssembly
Lautaro Carro
September 24, 2020
Tweet
Share
More Decks by Lautaro Carro
See All by Lautaro Carro
Introducción a Azure Service Bus
lauchacarro
0
17
Buenas prácticas para usar MinimalAPI en ASP.NET Core
lauchacarro
0
41
Novedades en .NET 9 y C#13 - .NET Conf 2024 - .Net Baires
lauchacarro
0
57
Microservicios Desacoplados: Una DB por Cada Uno - dotnet Latam day 2024
lauchacarro
0
96
Blazor en Grande: Arquitectura y Escalabilidad - Jornada 5 - Asp .NET (Español)
lauchacarro
0
89
Explorando las Identidades administradas de Azure - Global Azure 2024 - Latino NET Online
lauchacarro
0
110
Vertical Slice Architecture con Asp.Net Core | Latino .NET Online
lauchacarro
0
310
Global AI Bootcamp 2024 Peru - Azure OpenAI Conversaciones dinámicas con varios mensajes de sistema
lauchacarro
0
150
Inteligencia en tus Apps .NET con Azure Open AI - Microsoft User Group Arg
lauchacarro
0
160
Other Decks in Programming
See All in Programming
Julia という言語について (FP in Julia « SIDE: F ») for 関数型まつり2025
antimon2
3
920
Javaに鉄道指向プログラミング (Railway Oriented Pro gramming) のエッセンスを取り入れる/Bringing the Essence of Railway-Oriented Programming to Java
cocet33000
2
540
TypeScript LSP の今までとこれから
quramy
1
500
List Unfolding - 'unfold' as the Computational Dual of 'fold', and how 'unfold' relates to 'iterate'"
philipschwarz
PRO
0
190
Perplexity Slack Botを作ってAI活用を進めた話 / AI Engineering Summit プレイベント
n3xem
0
640
try-catchを使わないエラーハンドリング!? PHPでResult型の考え方を取り入れてみよう
kajitack
3
500
社内での開発コミュニティ活動とモジュラーモノリス標準化事例のご紹介/xPalette and Introduction of Modular monolith standardization
m4maruyama
0
120
UPDATEがシステムを複雑にする? イミュータブルデータモデルのすすめ
shimomura
1
530
Gleamという選択肢
comamoca
6
700
ASP.NETアプリケーションのモダナイズ インフラ編
tomokusaba
1
210
Rails産でないDBを Railsに引っ越すHACK - Omotesando.rb #110
lnit
1
160
Webからモバイルへ Vue.js × Capacitor 活用事例
naokihaba
0
540
Featured
See All Featured
The Language of Interfaces
destraynor
158
25k
Docker and Python
trallard
44
3.4k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
657
60k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
Agile that works and the tools we love
rasmusluckow
329
21k
Statistics for Hackers
jakevdp
799
220k
Navigating Team Friction
lara
186
15k
Building Adaptive Systems
keathley
43
2.6k
Music & Morning Musume
bryan
46
6.6k
Transcript
¿CÓMO CONECTARSE A SQL SERVER DESDE BLAZOR WEBASSEMBLY? Lautaro Carro
ADVERTENCIAS Se pueden llegar a encontrar con anti-patrones e ideas
descabelladas
OTRO PUNTO DE VISTA
RESUMEN SOBRE BLAZOR
TIPOS DE PROYECTOS BLAZOR
BLAZOR WEBASSEMBLY
CONSULTAR LA BASE DE DATOS DESDE EL NAVEGADOR
BENEFICIOS ❑Reducción de costos de mantenimiento ❑Reducción de tiempos de
desarrollo ❑Lógica de negocio en el Frontend ❑Puerta abierta a nuevas ideas ❑Mejora en UX
None
PLATAFORM NOT SUPPORTED
TENGO UNA IDEA
GENERAR LAS CONSULTAS EN EL FRONTEND
EF PROCESA Y DEVUELVE EL RESULTADO
None
LO QUE QUERÍAMOS HACER…
LO QUE QUERÍAMOS HACER… PERO PLATAFORM NOT SUPPORTED
NO NOS QUEDA OTRA…
¿QUÉ VA A TENER ESTE WEB SERVICE?
REMOTE.LINQ
❑Frontend (Blazor) ❑Lógica de Negocio (Servicios con LINQ) ❑Acceso a
Datos (Repositorio) ❑Conexión a base de datos (DbContext) ❑Un solo Endpoint con una línea de código ❑Entidades ❑DTO/Models
None
DESVENTAJAS ❑Todas las Queries se realizan mediante POST ❑Difícil de
Debuggear las Queries en el Frontend ❑Solo se pueden realizar Queries, no Commands
TENGO OTRA IDEA
QUERY API & COMMAND API Query Api Command Api Remote.LInq
Tradicional HTTP Requests
BENEFICIOS ❑Reducción de costos de mantenimiento ❑Reducción de tiempos de
desarrollo ❑Lógica de negocio en el Frontend ❑Puerta abierta a nuevas ideas ❑Mejora en UX
¿PREGUNTAS? ¿Cómo conectarse a SQL Server desde Blazor WebAssembly?
MUCHAS GRACIAS ¿Cómo conectarse a SQL Server desde Blazor WebAssembly?
@lauchacarro Lautarocarro.blog
REFERENCIAS https://github.com/6bee/Remote.Linq